forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulflive.com2.html
More file actions
1607 lines (1120 loc) · 87.3 KB
/
Copy pathgulflive.com2.html
File metadata and controls
1607 lines (1120 loc) · 87.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title> Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube - Video | gulflive.com</title>
<!--
<PageMap>
<DataObject type="document">
<Attribute name="article_title">Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube</Attribute>
<Attribute name="article_publication_name">gulflive.com</Attribute>
<Attribute name="article_author">Arnold Saba</Attribute>
<Attribute name="article_description">Crown Equity Holdings Inc. (OTCMKTS: CRWE) goal is to accelerate the success of the company, by refocusing on prior endeavors to deliver value for its stockholders in both the near and long term. CRWE has refocused its efforts and direction to an endeavor launched earlier this year in reference to an online business-to-business (B2B) marketplace platform for manufacturers and small to large businesses on a global basis to sell and acquire various types of merchandise. CRWE has started updating its B2B business plan and strategies to move forward. Strategic plans are also being developed for CRWE’s online video-sharing and VoIP communication projects to improve the potential future growth for the company Online ad spending has rapidly become a main stay in many advertising budgets with online TV ad budgets being with one of the main dynamics driving product and service revenue across all industries. BIA/Kelsey has projected that social media advertising spending will hit close to $10 billion by year 2016 well up from $4.8 billion spent in 2012. According to Break Media, video ad spending will reach $5.4 Billion by 2016. CRWE is targeting that multi-billion dollar market with its video sharing website CRWETube (www.crwetube.com) General disclaimer statements on this website or newsletter may constitute forward-looking statements and are subject to numerous risks and uncertainties, including the failure to complete successfully the development of new or enhanced products, the Company’s future capital needs, the lack of market demand for any new or enhanced products the Company may develop, any actions by the Company’s partners that may be adverse to the Company, the success of competitive products, other economic factors affecting the Company and its markets, seasonal changes, and other risks detailed from time to time in the Company’s filings with the U.S. Securities and Exchange Commission. The actual results may differ materially from those contained on this website. The Company disclaims any obligation to update any statements in this website. These stock quotes and related data are provided for information purposes only and are not intended for trading purposes. Crown Equity Holdings, Inc. . will not be liable for any inaccuracies or delays in such data, or for any actions taken in reliance thereon. Potential investors should seek independent information and advice from qualified investment professionals prior to investment Crown Equity Holdings, Inc. provides links to websites operated by third parties. These links may be of interest or of use to you, and are provided for convenience only. You should be aware that in using these links, you are leaving Crown Equity Holdings, Inc.‘s website. Crown Equity Holdings, Inc. does not approve or endorse the content, information or materials available on such third party websites. In addition, Crown Equity Holdings, Inc. makes no representation regarding, and is not responsible for, the content, information or material available on such websites. If you decide to access such websites or newsletter you do this at your own risk, and Crown Equity Holdings, Inc. will not be liable for any loss or damage associated with your use of, or reliance on, the content, information or material available on such websites. </Attribute>
<Attribute name="image_src">http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001</Attribute>
<Attribute name="article_comments">0</Attribute>
<Attribute name="article_date_original">10/17/2013</Attribute>
<Attribute name="article_date_updated">10/17/2013</Attribute>
</DataObject>
</PageMap>
-->
<meta name='parsely-page' content='{"title": "Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube", "link": "http://videos.gulflive.com/2013/10/crown_equity_holdings_could_be.html", "image_url": "http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001", "type": "post", "post_id": "11452195", "pub_date": "2013-10-17T20:24:37Z", "author": "Arnold Saba", "tags": ["advertising branding","advertising services","b2b","Crown Equity Holdings","CRWE","digital network","marketing services","marketing specialties","online business to business","online media awareness","online multi-media publisher","online video sharing","OTCMKTS:CRWE","search engine optimization","VoIP communication"] }'>
<meta name='parsely-metadata' content='{"image_url": "http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001", "author_name": "arsaba", "author_nickname": "Arnold Saba", "author_id": "11087064", "source_blog_name": "Gulflive.com: Community Videos", "source_blog_url": "http://videos.gulflive.com//", "sponsored_content": "0" }'>
<meta name="title" content="Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube" />
<meta name="article_publication_name" content="gulflive.com" />
<meta name="article_author" content="Arnold Saba" />
<meta name="article_date_original" content="Thursday, October 17, 2013, 8:09 PM" />
<meta name="article_date_updated" content="Thursday, October 17, 2013, 8:09 PM" />
<link rel="image_src" href="http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001" />
<meta name="article_comments" content="0" />
<meta name="medium" content="news" />
<meta property="og:title" content="Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube" />
<meta property="og:description" content="Crown Equity Holdings Inc. (OTCMKTS: CRWE) goal is to accelerate the success of the company, by refocusing on prior endeavors to deliver value for its stockholders in both the near and long term.
CRWE has refocused its efforts and direction to an endeavor launched earlier this year in reference to an online business-to-business (B2B) marketplace platform for manufacturers and small to large businesses on a global basis to sell and acquire various types of merchandise. CRWE has started updating its B2B business plan and strategies to move forward.
Strategic plans are also being developed for CRWE’s online video-sharing and VoIP communication projects to improve the potential future growth for the company
Online ad spending has rapidly become a main stay in many advertising budgets with online TV ad budgets being with one of the main dynamics driving product and service revenue across all industries.
BIA/Kelsey has projected that social media advertising spending will hit close to $10 billion by year 2016 well up from $4.8 billion spent in 2012.
According to Break Media, video ad spending will reach $5.4 Billion by 2016. CRWE is targeting that multi-billion dollar market with its video sharing website CRWETube (www.crwetube.com)
General disclaimer statements on this website or newsletter may constitute forward-looking statements and are subject to numerous risks and uncertainties, including the failure to complete successfully the development of new or enhanced products, the Company’s future capital needs, the lack of market demand for any new or enhanced products the Company may develop, any actions by the Company’s partners that may be adverse to the Company, the success of competitive products, other economic factors affecting the Company and its markets, seasonal changes, and other risks detailed from time to time in the Company’s filings with the U.S. Securities and Exchange Commission. The actual results may differ materially from those contained on this website. The Company disclaims any obligation to update any statements in this website. These stock quotes and related data are provided for information purposes only and are not intended for trading purposes. Crown Equity Holdings, Inc. . will not be liable for any inaccuracies or delays in such data, or for any actions taken in reliance thereon. Potential investors should seek independent information and advice from qualified investment professionals prior to investment Crown Equity Holdings, Inc. provides links to websites operated by third parties. These links may be of interest or of use to you, and are provided for convenience only. You should be aware that in using these links, you are leaving Crown Equity Holdings, Inc.‘s website. Crown Equity Holdings, Inc. does not approve or endorse the content, information or materials available on such third party websites. In addition, Crown Equity Holdings, Inc. makes no representation regarding, and is not responsible for, the content, information or material available on such websites. If you decide to access such websites or newsletter you do this at your own risk, and Crown Equity Holdings, Inc. will not be liable for any loss or damage associated with your use of, or reliance on, the content, information or material available on such websites.
" />
<meta property="og:site_name" content="gulflive.com" />
<meta property="og:url" content="http://videos.gulflive.com/2013/10/crown_equity_holdings_could_be.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001" />
<meta property="og:image" content="http://media.gulflive.com/design/baseline/img/logo_gulflive.gif" />
<script type="text/javascript" src="//tags.tiqcdn.com/utag/advancedigital/lib-common/prod/utag.sync.js"></script>
<!-- // Define an image media item and description for gigya pinterest MT-1770 -->
<script type="text/javascript">
var image = {
type: 'image',
src: 'http://brightcove.vo.llnwd.net/d21/unsecured/media/2344318176001/201310/895/2344318176001_2751251836001_vs-52607ca9e4b032287000c177-1083021586001.jpg?pubId=2344318176001',
href: 'http://videos.gulflive.com/2013/10/crown_equity_holdings_could_be.html'
}
var desc = 'Crown Equity Holdings Inc. (OTCMKTS: CRWE) goal is to accelerate the success of the company, by refocusing on prior endeavors to deliver value for its stockholders in both the near and long term.\r\n\r\nCRWE has refocused its efforts and direction to an endeavor launched earlier this year in reference to an online business-to-business (B2B) marketplace platform for manufacturers and small to large businesses on a global basis to sell and acquire various types of merchandise. CRWE has started updating its B2B business plan and strategies to move forward.\r\n\r\nStrategic plans are also being developed for CRWE’s online video-sharing and VoIP communication projects to improve the potential future growth for the company\r\n\r\nOnline ad spending has rapidly become a main stay in many advertising budgets with online TV ad budgets being with one of the main dynamics driving product and service revenue across all industries.\r\n\r\nBIA/Kelsey has projected that social media advertising spending will hit close to $10 billion by year 2016 well up from $4.8 billion spent in 2012.\r\n\r\nAccording to Break Media, video ad spending will reach $5.4 Billion by 2016. CRWE is targeting that multi-billion dollar market with its video sharing website CRWETube (www.crwetube.com)\r\n\r\nGeneral disclaimer statements on this website or newsletter may constitute forward-looking statements and are subject to numerous risks and uncertainties, including the failure to complete successfully the development of new or enhanced products, the Company’s future capital needs, the lack of market demand for any new or enhanced products the Company may develop, any actions by the Company’s partners that may be adverse to the Company, the success of competitive products, other economic factors affecting the Company and its markets, seasonal changes, and other risks detailed from time to time in the Company’s filings with the U.S. Securities and Exchange Commission. The actual results may differ materially from those contained on this website. The Company disclaims any obligation to update any statements in this website. These stock quotes and related data are provided for information purposes only and are not intended for trading purposes. Crown Equity Holdings, Inc. . will not be liable for any inaccuracies or delays in such data, or for any actions taken in reliance thereon. Potential investors should seek independent information and advice from qualified investment professionals prior to investment Crown Equity Holdings, Inc. provides links to websites operated by third parties. These links may be of interest or of use to you, and are provided for convenience only. You should be aware that in using these links, you are leaving Crown Equity Holdings, Inc.‘s website. Crown Equity Holdings, Inc. does not approve or endorse the content, information or materials available on such third party websites. In addition, Crown Equity Holdings, Inc. makes no representation regarding, and is not responsible for, the content, information or material available on such websites. If you decide to access such websites or newsletter you do this at your own risk, and Crown Equity Holdings, Inc. will not be liable for any loss or damage associated with your use of, or reliance on, the content, information or material available on such websites. \r\n';
</script>
<script type="text/javascript">
window.LF_META = {
"environment": "production",
"networkId": "advancedigital.fyre.co",
"siteId": "352332",
"articleId": "61900fd7785aa35cc93684e4474ac912",
"checksum": "4532d2d114b940277366c9cd8dc7a299",
"collectionMeta": "eyJhbGciOiJIUzI1NiJ9.eyJjaGVja3N1bSI6IjQ1MzJkMmQxMTRiOTQwMjc3MzY2YzljZDhkYzdhMjk5IiwiYXJ0aWNsZUlkIjoiNjE5MDBmZDc3ODVhYTM1Y2M5MzY4NGU0NDc0YWM5MTIiLCJ1cmwiOiJodHRwOi8vdmlkZW9zLmd1bGZsaXZlLmNvbS8yMDEzLzEwL2Nyb3duX2VxdWl0eV9ob2xkaW5nc19jb3VsZF9iZS5odG1sIiwidGl0bGUiOiJDcm93biBFcXVpdHkgSG9sZGluZ3MgQ291bGQgYmUgU2l0dGluZyBvbiBhIEdvbGQgTWluZSB3aXRoIENSV0VUdWJlIiwidGFncyI6ImV4cGVydCxhZHZlcnRpc2luZyBicmFuZGluZyxhZHZlcnRpc2luZyBzZXJ2aWNlcyxiMmIsQ3Jvd24gRXF1aXR5IEhvbGRpbmdzLENSV0UsZGlnaXRhbCBuZXR3b3JrLG1hcmtldGluZyBzZXJ2aWNlcyxtYXJrZXRpbmcgc3BlY2lhbHRpZXMsb25saW5lIGJ1c2luZXNzIHRvIGJ1c2luZXNzLG9ubGluZSBtZWRpYSBhd2FyZW5lc3Msb25saW5lIG11bHRpLW1lZGlhIHB1Ymxpc2hlcixvbmxpbmUgdmlkZW8gc2hhcmluZyxPVENNS1RTOkNSV0Usc2VhcmNoIGVuZ2luZSBvcHRpbWl6YXRpb24sVm9JUCBjb21tdW5pY2F0aW9uIn0.21npiEoqrUd0gK5OkiVXtGcvGkmZy1y5AeVVetIcPZ0",
"readOnly": "false",
"articleAuthorID": "11087064"
};
</script>
<script type="text/javascript">
var rtb_comments_readonly = false;
</script>
<link rel="alternate" type="application/atom+xml" title="Gulflive.com: Community Videos" href="http://videos.gulflive.com///atom.xml" />
<script type="text/javascript" src="http://videos.gulflive.com///js/mt.js"></script>
<link rel="stylesheet" href="http://media.gulflive.com/design/baseline/css/nocommentbox.css" type="text/css" />
<link rel="stylesheet" href="http://media.gulflive.com/design/baseline/css/common.min.css" type="text/css" />
<script type="text/javascript" src="http://media.gulflive.com/design/baseline/js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="http://media.gulflive.com/design/baseline/js/jquery-plugins.min.js"></script>
<script type="text/javascript" src="http://www.gulflive.com/08design/js/default.js"></script>
<link rel="publisher" href="https://plus.google.com/118188279922237423759/" />
<script type="text/javascript" src="http://media.gulflive.com/design/baseline/js/movabletype.min.1.js"></script>
<script type="text/javascript" src="http://media.gulflive.com/design/baseline/js/advance.min.1.js"></script>
<script type="text/javascript" src="http://media.gulflive.com/design/baseline/js/adv-tracker.min.js"></script>
<script type="text/javascript" src="/static/common/js/adv_gigya.js"></script>
<script type="text/javascript" >
/* <![CDATA[ */
m_context = "blog_entry";
m_blog_type = "video";
m_blog_id = "8002556";
m_blog_name = "Gulflive.com: Community Videos";
m_blog_url = "http://videos.gulflive.com//";
m_blog_newspaper = "";
m_video_asset_id = "13599832";
m_entry_author_name = "Arnold Saba";
m_entry_author_username = "arsaba";
m_entry_title = "Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube";
m_entry_author_username = "arsaba";
m_entry_basename = "crown_equity_holdings_could_be";
m_entry_link = "http://videos.gulflive.com/2013/10/crown_equity_holdings_could_be.html";
m_entry_tags = "advertising branding;advertising services;b2b;Crown Equity Holdings;CRWE;digital network;marketing services;marketing specialties;online business to business;online media awareness;online multi-media publisher;online video sharing;OTCMKTS:CRWE;search engine optimization;VoIP communication";
m_entry_keywords = "";
m_entry_id = "11452195";
/* ]]> */
</script>
<link rel="stylesheet" href="http://www.gulflive.com/static/common/css/global.min.css" type="text/css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var extraPositions = '';
extraPositions += ',Column4';
extraPositions += ',Tower';
/* ]]> */
</script>
<!-- ESI NOTE: ttl 30s, oas_listpos.html -->
<script type="text/javascript">
/* <![CDATA[ */
OAS_listpos = 'Leaderboard,SiteSponsor,SecSponsor,Rectangle,RectangleBelow,Tile5,TxtLink1,TxtLink2,TxtLink3,Marketing1' + extraPositions;
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
OASappendquery = '';
OAS_query = '';
namevalString = '';
/* ]]> */
</script>
<script type="text/javascript" src="http://www.gulflive.com/js/oas/mjx/oas_mjx.js"></script>
<meta name="keywords" content="local videos, news videos, online news videos" />
<meta name="googlebot-news" content="noindex" />
<meta name="Description" content="Crown Equity Holdings Inc. (OTCMKTS: CRWE) goal is to accelerate the success of the company, by refocusing on prior endeavors to deliver value for its stockholders in both the near and long term.
CRWE has refocused its efforts and direction to an endeavor launched earlier this year in reference to an online business-to-business (B2B) marketplace platform for manufacturers and small to large businesses on a global basis to sell and acquire various types of merchandise. CRWE has started updating its B2B business plan and strategies to move forward.
Strategic plans are also being developed for CRWE’s online video-sharing and VoIP communication projects to improve the potential future growth for the company
Online ad spending has rapidly become a main stay in many advertising budgets with online TV ad budgets being with one of the main dynamics driving product and service revenue across all industries.
BIA/Kelsey has projected that social media advertising spending will hit close to $10 billion by year 2016 well up from $4.8 billion spent in 2012.
According to Break Media, video ad spending will reach $5.4 Billion by 2016. CRWE is targeting that multi-billion dollar market with its video sharing website CRWETube (www.crwetube.com)
General disclaimer statements on this website or newsletter may constitute forward-looking statements and are subject to numerous risks and uncertainties, including the failure to complete successfully the development of new or enhanced products, the Company’s future capital needs, the lack of market demand for any new or enhanced products the Company may develop, any actions by the Company’s partners that may be adverse to the Company, the success of competitive products, other economic factors affecting the Company and its markets, seasonal changes, and other risks detailed from time to time in the Company’s filings with the U.S. Securities and Exchange Commission. The actual results may differ materially from those contained on this website. The Company disclaims any obligation to update any statements in this website. These stock quotes and related data are provided for information purposes only and are not intended for trading purposes. Crown Equity Holdings, Inc. . will not be liable for any inaccuracies or delays in such data, or for any actions taken in reliance thereon. Potential investors should seek independent information and advice from qualified investment professionals prior to investment Crown Equity Holdings, Inc. provides links to websites operated by third parties. These links may be of interest or of use to you, and are provided for convenience only. You should be aware that in using these links, you are leaving Crown Equity Holdings, Inc.‘s website. Crown Equity Holdings, Inc. does not approve or endorse the content, information or materials available on such third party websites. In addition, Crown Equity Holdings, Inc. makes no representation regarding, and is not responsible for, the content, information or material available on such websites. If you decide to access such websites or newsletter you do this at your own risk, and Crown Equity Holdings, Inc. will not be liable for any loss or damage associated with your use of, or reliance on, the content, information or material available on such websites." />
</head>
<body>
<script type="text/javascript">
(function(a,b,c,d){
a='//tags.tiqcdn.com/utag/advancedigital/gulflive/prod/utag.js';
b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
})();
</script>
<div id="FB_HiddenContainer" style="position: absolute; top: -10000px; left: -10000px; width: 0px; height: 0px;"></div>
<div id="MasterContainer">
<!-- Start Masthead -->
<!-- ./templates/global/shared/nav/masthead.mtml start -->
<!-- start toprail -->
<!-- static/gulf/toprail/mt4 -->
<link rel="stylesheet" type="text/css" href="/static/common/css/adv_toprail_v001.css" />
<link rel="stylesheet" type="text/css" href="/static/gulf/static/css/affiliate.css" />
<script src="/static/common/js/libs/jquery.placeholder.js"></script>
<style type="text/css">
body{margin:0}
#MasterContainer{width:100%;}
#PageContent{width:980px;margin:0 auto}
#adv-banner a:active, #adv-banner a:hover {font-weight: normal;color: #363636 !important;}
#adv-banner a:link, #adv-banner a:visited {font-weight: normal;color: #363636 !important;}
#adv-banner a.adv-main:link {font-weight: bold;}
#adv-banner {font-family: arial, sans-serif;}
</style>
<script type="text/javascript">
//<![CDATA[<!--
if (jQuery.browser.msie) {
var $html = jQuery('html');
if (jQuery.browser.version < 9) $html.addClass('lt-ie9');
if (jQuery.browser.version < 8) $html.addClass('lt-ie8');
}
(function() {
var config = {
kitId: 'iiu0uok'
};
var d = false;
var tk = document.createElement('script');
tk.src = '//fonts.advance.net/' + config.kitId + '.js';
tk.type = 'text/javascript';
tk.async = 'true';
tk.onload = tk.onreadystatechange = function() {
var rs = this.readyState;
if (d || rs && rs != 'complete' && rs != 'loaded') return;
d = true;
try { Typekit.load(config); } catch (e) {}
};
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(tk, s);
})();
//-->]]>
</script>
<script type="text/javascript" src="/static/common/js/libs/modernizr-2.6.2.min.js"></script>
<section id="adv-network">
<div class="adv-leaderboard"><script type="text/javascript">OAS_AD('Leaderboard');</script></div>
</section>
<div id="adv-banner">
<nav id="adv-classified-nav">
<div id="adv-classified-nav-inner">
<ul class="adv-cul adv-clearfix">
<li class="adv-cli adv-cli-co">IN YOUR COMMUNITY:</li>
<li class="adv-cli">
<a href="http://www.gulflive.com/jobs/" class="adv-clia">Jobs</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/jobs/">Find a Job</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://jobs.gulflive.com/jobs/user/login?rd=http%3A%2F%2Fjobs.gulflive.com%2Fcareers%2Fjobseeker">Job Seeker Tools</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://jobs.gulflive.com/careers/employer">Employer Tools</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://jobs.gulflive.com/jobs/products/">Post a Job</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://autos.gulflive.com/" class="adv-clia">Autos</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a href="http://autos.gulflive.com/" class="adv-csa">Autos Home</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/new-car-prices" class="adv-csa">New Car Pricing</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/used-cars" class="adv-csa">Used Cars</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/research" class="adv-csa">Research</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/motorcycles/" class="adv-csa">Motorcycles</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/classic-cars/" class="adv-csa">Classic Cars</a></li>
<li class="adv-csli"><a href="http://autos.gulflive.com/dealers/" class="adv-csa">Find A Dealer</a></li>
<li class="adv-csli"><a href="http://www.gulflive.com/placead/" class="adv-csa">Place An Ad</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://realestate.gulflive.com/" class="adv-clia">Real Estate</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a href="http://realestate.gulflive.com/" class="adv-csa">Real Estate Home</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/" class="adv-csa">Homes</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/new-homes" class="adv-csa">New Homes</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/for-rent" class="adv-csa">Rent</a></li>
<li class="adv-csli"><a href="http://vacationrentals.gulflive.com/" class="adv-csa">Vacation Rentals</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/foreclosures" class="adv-csa">Foreclosures</a></li>
<li class="adv-csli"><a href="http://www.cityfeet.com/partner/gulflive/" class="adv-csa">Commercial</a></li>
<li class="adv-csli"><a href="http://www.gulflive.com/placead/" class="adv-csa">Place An Ad</a></li>
<li class="adv-csli"><a href="http://search.gulflive.com/" class="adv-csa">More »</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://realestate.gulflive.com/for-rent/" class="adv-clia">Rentals</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a href="http://realestate.gulflive.com/for-rent" class="adv-csa">Rentals Home</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/for-rent" class="adv-csa">Apartments</a></li>
<li class="adv-csli"><a href="http://vacationrentals.gulflive.com/" class="adv-csa">Vacation Rentals</a></li>
<li class="adv-csli"><a href="http://www.cityfeet.com/partner/gulflive/" class="adv-csa">Commercial Leases</a></li>
<li class="adv-csli"><a href="http://www.gulflive.com/realestate/advertise/" class="adv-csa">Place An Ad</a></li>
<li class="adv-csli"><a href="http://realestate.gulflive.com/for-rent" class="adv-csa">More »</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://classifieds.gulflive.com/" class="adv-clia">Classifieds</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a class="adv-csa" href="http://classifieds.gulflive.com/">Classifieds Home</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/classifieds/pets/">Pets</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/classifieds/garagesales/">Garage Sales</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/classifieds/forsale/">For Sale</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://classifieds.gulflive.com/?orig_cat=&property=al.com&orig_prop=al.com&temp_type=browse&category=results&tp=ME_gulf&classification=Celebrations">Celebrations</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://autos.gulflive.com/">Autos</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/jobs">Jobs</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://realestate.gulflive.com/">Real Estate</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://realestate.gulflive.com/for-rent/">Rentals</a></li>
<li class="adv-csli"><a class="adv-csa" href="http://www.gulflive.com/placead/">Place An Ad</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://obits.gulflive.com/obituaries/gulflive/" class="adv-clia">Obituaries</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a href="http://obits.gulflive.com/obituaries/gulflive/" class="adv-csa">Obituaries Home</a></li>
</ul>
</div>
</li>
<li class="adv-cli">
<a href="http://findnsave.gulflive.com/?ac=AFFgulfliveFSNAVFLS" class="adv-clia">FIND&SAVE</a>
</li>
<li class="adv-cli">
<a href="http://businessfinder.gulflive.com/" class="adv-clia">Local Businesses</a>
<div class="adv-classified-sub">
<ul class="adv-csul">
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/" class="adv-csa">Find a Business</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Food-and-Dining" class="adv-csa">Food & Dining</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Retail-Shopping" class="adv-csa">Retail Shopping</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Health-and-Medicine" class="adv-csa">Health & Medicine</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Personal-Care-and-Well-Being" class="adv-csa">Personal Care</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Entertainment-and-Arts" class="adv-csa">Entertainment</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Real-Estate" class="adv-csa">Real Estate</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/MS-Pascagoula/Automotive" class="adv-csa">Automotive</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/about/advertise.html" class="adv-csa">Claim Your Business</a></li>
<li class="adv-csli"><a href="http://businessfinder.gulflive.com/" class="adv-csa">More</a></li>
</ul>
</div>
</li>
</ul>
<div class="adv-place-ad"><a href="http://www.gulflive.com/placead/">Place An Ad</a></div>
</div><!--/classified-nav-inner-->
</nav>
<div id="adv-full">
<section id="adv-masthead">
<div class="adv-wrapper adv-clearfix">
<div id="adv-nameplate">
<div class="adv-weather" data-json="weather.json">
<div class="adv-weather-inner">
<span class="adv-temp"></span>
<!-- <span class="adv-conditions"></span>-->
<span class="adv-links"><a href="#link">5-day</a> | <a href="#link">Satellite</a></span>
</div>
</div>
<div class="adv-hgroup">
<a href="http://www.gulflive.com">
<img class="logo-image" src="/static/gulf/static/img/logo_v001.png" alt="GulfLive.com"/>
</a>
<div class="adv-display-name-container">
<h1 class="adv-display_name">Mississippi</h1>
<img class="adv-powered-by" src="http://media.gulflive.com/static/gulf/static/img/logos/gulf_v001.png" alt="Mississippi">
</div>
</div>
</div>
<div id="adv-search">
<div class="adv-social-links" id="adv-classified-social">
<a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter"></a>
<a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook"></a>
<a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss"></a>
<a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest"></a>
<a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram"></a>
<a href="https://plus.google.com/u/0/118188279922237423759/posts" rel="publisher" title="Google Plus" class="adv-icn-google"></a>
</div>
<p class="adv-login-links logged-in">
<a class="jqModal" id="AdvSigninLink" href="#sign-in">Sign in</a>
<span>|</span>
<a class="adv-banner-signin-link" href="https://signup.gulflive.com/register/?">Join</a>
</p>
<form method="get" action="http://search.gulflive.com/sp">
<input placeholder="Search" type="text" id="adv-site-search" name="keywords" />
<input type="image" src="http://media.gulflive.com/static/common/img/icn-search-mag.png" id="adv-site-search-submit" value="" />
</form>
</div>
</div>
</section>
</div>
<div id="adv-condensed">
<div class="adv-wrapper adv-clearfix">
<div class="adv-logo"><a href="http://www.gulflive.com">GulfLive.com</a></div>
<span id="adv-edition-chooser" class="adv-chooser" data-selected="gulf">
<span class="adv-chooser-title"><span></span></span>
</span>
<div class="adv-weather">
<span class="adv-temp"></span>
<span class="adv-links"><a href="#link">5-day</a> | <a href="#link">Satellite</a></span>
</div>
<div id="adv-tablet-search">
<form class="modalLightboxInner" method="get" action="http://search.gulflive.com/sp">
<div class="title">Search GulfLive.com</div>
<div>
<input placeholder="Search" type="text" id="adv-condensed-search" name="keywords" class="adv-search" />
</div>
<div class="frm-btn">
<input type="submit" id="adv-condensed-search-submit" value="Search" />
</div>
</form>
<a href="" title="Click to close" class="AdvSignInClose jqmClose"><img src="http://media.gulflive.com/static/common/img/icn-close-dialog.png" alt="Close" /></a>
</div>
<input type="image" src="http://media.gulflive.com/static/common/img/icn-search-mag.png" id="adv-tablet-search-open" alt="Search" />
<p id="adv-condensed-sign-in"><a class="jqModal" href="#sign-in">Sign in</a></p>
</div>
</div><!-- /adv-condensed -->
<nav id="adv-section-nav">
<div id="adv-section-nav-inner">
<ul class="adv-sul">
<li class="adv-sli">
<a class="adv-main v001" href="http://www.gulflive.com/news/">News</a>
<div class="adv-sub adv-unloaded" data-value="news" data-json="">
<div class="adv-header">
<div class="adv-sub-sponsor"></div>
<h3><a href="http://www.gulflive.com/news/">News</a></h3>
<div class="adv-sub-social">
<p>Follow us:</p>
<p><a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter">Twitter</a></p>
<p><a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook">Facebook</a></p>
<p><a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss">RSS</a></p>
<p><a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest">Pinterest</a></p>
<p><a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram">Instagram</a></p>
<p><a href="https://plus.google.com/u/0/118188279922237423759/posts" title="Google Plus" class="adv-icn-google">Google Plus</a></p>
</div>
</div>
<div class="adv-main-heds">
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/news/">News Home »</a></p>
</div><!--/adv-main-heds-->
<div class="adv-other-heds">
<div class="adv-blogs">
<h4>Featured</h4>
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/news/">All News Topics »</a></p>
</div><!--/adv-blogs-->
<div class="adv-more">
<h4>More ...</h4>
<table>
<tr>
<td><a href="http://gulflive.com/opinion/">Opinion</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://www.gulflive.com/newsflash/">Nation/World</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://gulflive.com/deathnotices/">Obits</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://gulflive.com/weather/">Weather</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://blog.gulflive.com/public-records/index.html">Public Records</a></td>
<td></td>
</tr>
</table>
</div><!--/adv-more-->
</div><!--/adv-other-heds-->
</div><!--/adv-sub-->
</li>
<li class="adv-sli">
<a class="adv-main v001" href="http://www.gulflive.com/business/">Business</a>
<div class="adv-sub adv-unloaded" data-value="business" data-json="">
<div class="adv-header">
<div class="adv-sub-sponsor"></div>
<h3><a href="http://www.gulflive.com/business/">Business</a></h3>
<div class="adv-sub-social">
<p>Follow us:</p>
<p><a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter">Twitter</a></p>
<p><a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook">Facebook</a></p>
<p><a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss">RSS</a></p>
<p><a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest">Pinterest</a></p>
<p><a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram">Instagram</a></p>
<p><a href="https://plus.google.com/u/0/118188279922237423759/posts" title="Google Plus" class="adv-icn-google">Google Plus</a></p>
</div>
</div>
<div class="adv-main-heds">
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/business/">Business Home »</a></p>
</div><!--/adv-main-heds-->
<div class="adv-other-heds">
<div class="adv-blogs">
<h4>Featured</h4>
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/business/">All Business Topics »</a></p>
</div><!--/adv-blogs-->
<div class="adv-more">
<h4>More ...</h4>
<table>
<tr>
<td><a href="http://gulflive.com/business/">Business News</a></td>
<td><a href="http://blog.gulflive.com/press-releases/index.html">Press Releases</a></td>
</tr>
<tr>
<td><a href="http://businessfinder.gulflive.com/">Business finder</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://gulflive.com/jobs/">Jobs</a></td>
<td></td>
</tr>
</table>
</div><!--/adv-more-->
</div><!--/adv-other-heds-->
</div><!--/adv-sub-->
</li>
<li class="adv-sli">
<a class="adv-main v001" href="http://www.gulflive.com/sports/">Sports</a>
<div class="adv-sub adv-unloaded" data-value="sports" data-json="">
<div class="adv-header">
<div class="adv-sub-sponsor"></div>
<h3><a href="http://www.gulflive.com/sports/">Sports</a></h3>
<div class="adv-sub-social">
<p>Follow us:</p>
<p><a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter">Twitter</a></p>
<p><a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook">Facebook</a></p>
<p><a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss">RSS</a></p>
<p><a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest">Pinterest</a></p>
<p><a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram">Instagram</a></p>
<p><a href="https://plus.google.com/u/0/118188279922237423759/posts" title="Google Plus" class="adv-icn-google">Google Plus</a></p>
</div>
</div>
<div class="adv-main-heds">
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/sports/">Sports Home »</a></p>
</div><!--/adv-main-heds-->
<div class="adv-other-heds">
<div class="adv-blogs">
<h4>Featured</h4>
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/sports/">All Sports Topics »</a></p>
</div><!--/adv-blogs-->
<div class="adv-more">
<h4>More ...</h4>
<table>
<tr>
<td class="hed"><a href="http://gulflive.com/mississippi-state/">Mississippi St.</a></td>
<td></td>
</tr>
<tr>
<td class="hed"><a href="http://gulflive.com/mississippi/">Ole Miss</a></td>
<td></td>
</tr>
<tr>
<td class="hed"><a href="http://gulflive.com/southern-miss/">Southern Miss</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://gulflive.com/sportsflash/">Nation/World sports</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://blog.gulflive.com/mississippi-press-sports/high_school/index.html">High School Sports</a></td>
<td></td>
</tr>
<tr>
<td><a href="http://www.gulflive.com/ncaatournament/">NCAA Tournament</a></td>
<td></td>
</tr>
</table>
</div><!--/adv-more-->
</div><!--/adv-other-heds-->
</div><!--/adv-sub-->
</li>
<li class="adv-sli">
<a class="adv-main v001" href="http://www.gulflive.com/entertainment/">Entertainment</a>
<div class="adv-sub adv-unloaded" data-value="entertainment" data-json="">
<div class="adv-header">
<div class="adv-sub-sponsor"></div>
<h3><a href="http://www.gulflive.com/entertainment/">Entertainment</a></h3>
<div class="adv-sub-social">
<p>Follow us:</p>
<p><a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter">Twitter</a></p>
<p><a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook">Facebook</a></p>
<p><a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss">RSS</a></p>
<p><a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest">Pinterest</a></p>
<p><a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram">Instagram</a></p>
<p><a href="https://plus.google.com/u/0/118188279922237423759/posts" title="Google Plus" class="adv-icn-google">Google Plus</a></p>
</div>
</div>
<div class="adv-main-heds">
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/entertainment/">Entertainment Home »</a></p>
</div><!--/adv-main-heds-->
<div class="adv-other-heds">
<div class="adv-blogs">
<h4>Featured</h4>
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/entertainment/">Entertainment Topics »</a></p>
</div><!--/adv-blogs-->
<div class="adv-more">
<h4>More ...</h4>
<table>
<tr>
<td><a href="http://gulflive.com/entertainment/">Entertainment news</a></td>
<td><a href="http://gulflive.com/food-dining/">Food & Dining</a></td>
</tr>
<tr>
<td><a href="http://gulflive.com/events/">Events</a></td>
<td></td>
</tr>
</table>
</div><!--/adv-more-->
</div><!--/adv-other-heds-->
</div><!--/adv-sub-->
</li>
<li class="adv-sli">
<a class="adv-main v001" href="http://www.gulflive.com/living/">Living</a>
<div class="adv-sub adv-unloaded" data-value="living" data-json="">
<div class="adv-header">
<div class="adv-sub-sponsor"></div>
<h3><a href="http://www.gulflive.com/local/">Living</a></h3>
<div class="adv-sub-social">
<p>Follow us:</p>
<p><a href="https://twitter.com/gulflive" title="Twitter" class="adv-icn-twitter">Twitter</a></p>
<p><a href="https://facebook.com/gulflive" title="Facebook" class="adv-icn-facebook">Facebook</a></p>
<p><a href="http://gulflive.com/rss" title="RSS" class="adv-icn-rss">RSS</a></p>
<p><a href="http://pinterest.com/gulflive/" title="Pinterest" class="adv-icn-pinterest">Pinterest</a></p>
<p><a href="http://instagram.com/gulflivepix/" title="Instagram" class="adv-icn-instagram">Instagram</a></p>
<p><a href="https://plus.google.com/u/0/118188279922237423759/posts" title="Google Plus" class="adv-icn-google">Google Plus</a></p>
</div>
</div>
<div class="adv-main-heds">
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/living/">Living Home »</a></p>
</div><!--/adv-main-heds-->
<div class="adv-other-heds">
<div class="adv-blogs">
<h4>Featured</h4>
<ul>
<li class="adv-loading">Loading headlines...</li>
</ul>
<p><a href="http://www.gulflive.com/living/">All Living Topics »</a></p>
</div><!--/adv-blogs-->
<div class="adv-more">
<h4>More ...</h4>
<div class="adv-more">
<table>
<tr>
<td><a href="http://gulflive.com/living/">Features</a></td>
<td></td>
</tr>
</table>
</div>
</div><!--/adv-more-->
</div><!--/adv-other-heds-->
</div><!--/adv-sub-->
</li>
</ul>
<div class="SiteSponsor"><script type="text/javascript">OAS_AD('SiteSponsor');</script></div>
</div><!--/adv-section-nav-inner-->
</nav>
</div>
<!-- AdvSignInDialog -->
<div id="AdvSignInDialog" class="" style="z-index:3000;">
<div class="AdvSignInInner">
<h2>Sign in to GulfLive.com</h2>
<div class="adv-signin-col">
<form id="AdvToprailSigninForm" name="ToprailSignInForm" method="post" action="https://signup.gulflive.com/community/" onsubmit="document.getElementById('adv_login_return_url').value=document.location.href;return true;">
<input type="hidden" name="component" value="" />
<input type="hidden" name="component_action" value="" />
<input type="hidden" name="__mode" value="do_login">
<input type="hidden" name="return_to" id="adv_login_return_url" value="">
<input type="hidden" name="affiliate" id="adv-affiliate" value="gulf">
<input type="hidden" name="v" id="adv-v" value="baseline">
<label for="tr_login_author">Username</label>
<input type="text" id="adv_tr_login_author" name="username" value="" class="field" size="30">
<label for="tr_login_password">Password</label>
<input type="password" id="adv_tr_login_password" name="password" value="" class="field" size="30">
<label for="remember"><input type="checkbox" id="remember" /> Remember me</label>
<div style="text-align:center;padding-top:20px;">
<input type="submit" class="" value="Sign In" />
<p><a href="https://signup.gulflive.com/remember/?return_to=http%3A%2F%2Fwww.gulflive.com%2F" title="Forgot password?" id="AdvForgotPassword">Forgot your username or password ?</a></p>
</div>
<input type="hidden" id="adv_tr_error_url" name="error_url" value="https://signup.gulflive.com/sign-in/">
</form>
</div>
<div id="AdvSignInServices" class="adv-signin-col">
<h3>Don’t have an account?</h3>
<p><a title="Register now!" id="adv-toprail-login-register" href="https://signup.gulflive.com/register/?">Register now for free</a>, or sign in with any of these services:</p>
<span id="adv-open-id-links">
<a class="adv-signin-fb" id="AdvTrSdFb" href="https://signup.gulflive.com/sign-in/?option=Facebook"><img src="http://media.gulflive.com/static/common/img/buttons/btn-signin-Facebook.png" alt="Facebook" /></a>
<a class="adv-signin-google" href="https://signup.gulflive.com/sign-in/?option=Google"><img src="http://media.gulflive.com/static/common/img/buttons/btn-signin-Google.png" alt="Google" /></a>
<a class="adv-signin-twitter" href="https://signup.gulflive.com/sign-in/?option=Twitter"><img src="http://media.gulflive.com/static/common/img/buttons/btn-signin-Twitter.png" alt="Twitter" /></a>
<a class="adv-signin-aim" href="https://signup.gulflive.com/sign-in/?option=AIM"><img src="http://media.gulflive.com/static/common/img/buttons/btn-signin-AOL.png" alt="AOL" /></a>
</span>
</div>
</div><!--/SignInInner-->
<a href="" title="Click to close" class="AdvSignInClose jqmClose"><img src="http://media.gulflive.com/static/common/img/icn-close-dialog.png" alt="Close" /></a>
</div><!--/SignInDialog-->
<script type="text/javascript">
/* <![CDATA[ */
var arcs_logo_suffix = '_v001.png';
/* ]]> */
</script>
<!-- #WeatherDialog -->
<div id="weather_location">
<form class="modalLightboxInner" id="w_location_form">
<div class="title">Customize Your Weather</div>
<div>
<label for="adv_location_input">Set Your Location (Enter City and State or Zip Code)</label>
<p class="error-msg"></p>
</div>
<div class="frm-in"><input name="adv_location_input" class="location-input" type="text" value="" placeholder="Enter City, State or Zip Code" /></div>
<div class="frm-btn"><input class="" type="submit" value="Submit" /></div>
</form>
<a href="" title="Click to close" class="AdvSignInClose jqmClose"><img src="http://media.gulflive.com/static/common/img/icn-close-dialog.png" alt="Close" /></a>
</div>
<div id="weather_confirm" class="edition">
<div class="modalLightboxInner">
<div class="title">Congratulations!</div>
<div>Your weather is set to <span class="adv-geo-choosen"></span>. You can change the location at any time.</div>
<div class="frm-btn"><input class="jqmClose" data-phase="phase3" type="button" value="Done" /></div>
</div>
<a href="" title="Click to close" class="AdvSignInClose jqmClose"><img src="http://media.gulflive.com/static/common/img/icn-close-dialog.png" alt="Close" /></a>
</div>
<!-- /#WeatherDialog -->
<script type="text/javascript" src="/static/gulf/static/js/adv_region.js"></script>
<script type="text/javascript" defer src="/static/common/js/adv_toprail.js"></script>
<script type="text/javascript" defer src="/static/common/js/adv_signin.js"></script>
<!-- stop toprail -->
<div class="ad_980x300" id="Tower">
<script type="text/javascript">
/* <![CDATA[ */
OAS_AD('Tower');
processAd("Tower");
/* ]]> */
</script>
</div>
<div class="roundbox_overlay" id="InfoPopup">
<div class="roundbox_tl"> </div><div class="roundbox_tr"> </div>
<div class="roundbox_content" id="InfoData"></div>
<div class="roundbox_bl"> </div><div class="roundbox_br"> </div>
<div class="roundbox_arrow_down center"><img src="http://media.gulflive.com/design/baseline/img/roundbox_arrow_down.gif" alt="" /></div>
</div>
<!-- ./templates/global/shared/nav/masthead.mtml end -->
<!-- End Masthead -->
<div id="PageContent">
<div id="MainColumn">
<div class="content_masthead">
<a href="http://videos.gulflive.com//"><img src="http://media.gulflive.com/design/baseline/img/default_video_icon.gif" alt="Gulflive.com: Community Videos"/></a>
<div><a href="http://videos.gulflive.com//">Gulflive.com: Community Videos</a>
<div class="tagline"></div></div>
</div>
<div id="ContentWell" class="contentwell_video">
<div class="breadcrumbs"><a class="category" href="http://videos.gulflive.com//business_videos/index.html">Business Videos</a>, <a class="category" href="http://videos.gulflive.com//news_videos/index.html">News Videos »</a></div>
<div class="full_entry video">
<p> <div id="BCLcontainingBlock">
<div class="BCLvideoWrapper">
<!-- Start of Brightcove Player -->
<object id="mt-13599832" class="BrightcoveExperience">
<param name="wmode" value="opaque" />
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="" />
<param name="height" value="" />
<param name="playerID" value="2562166671001" />
<param name="playerKey" value="wyeczAXP-mcOAIBiaxg0npZB3XscVZwLzMBJvPI8QzqoCsgDfm5x-w.." />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
<param name="dynamicStreaming" value="true" />
<param name="@videoPlayer" value="ref:mt-13599832" />
<param name="additionalAdTargetingParams" value="" />
</object>
<!-- End of Brightcove Player -->
</div>
</div>
</p>
<div class="title">
<h1 class="left">Crown Equity Holdings Could be Sitting on a Gold Mine with CRWETube</h1>
<span class="time"></span>
</div>
<h5 class="clear">
Posted: Thursday, October 17, 2013, 8:09 PM
<div class="alert photo_alert" style="display:block;">Inappropriate video? <a href="javascript:void(0)" onclick="return moderate('http://connect.gulflive.com/cgi-bin/mte/plugins/Moderate/moderate.cgi?__mode=flag&rbu=http://videos.gulflive.com//&entry_id=11452195');">Alert us.</a></div>
</h5>
<div class="clear0"><!-- --></div>
<div class="author_info">
<a href="http://connect.gulflive.com/user/arsaba/index.html">
<img class="Avatar" src="http://media.gulflive.com/avatars/11087064.png" width="40" height="40" alt="Arnold Saba" />
</a>
<span class="author_byline">
By