<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
	<link rel="stylesheet" type="text/css" href="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/css/index_dark_orange.css?fin20" />
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location ="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;;theme=34";
}
//-->
</script>
	<script type="text/javascript" src="http://occasion-to-be.com/forum/Themes/default/scripts/script.js?fin20"></script>
	<script type="text/javascript" src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/scripts/theme.js?fin20"></script>
	<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
	<script type="text/javascript" src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/scripts/scroll.js"></script>
	<script type="text/javascript"><!-- // --><![CDATA[
		var smf_theme_url = "http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2";
		var smf_default_theme_url = "http://occasion-to-be.com/forum/Themes/default";
		var smf_images_url = "http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images";
		var smf_scripturl = "http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;";
		var smf_iso_case_folding = false;
		var smf_charset = "UTF-8";
		var ajax_notification_text = "Loading...";
		var ajax_notification_cancel_text = "Cancel";
	// ]]></script>
  	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<meta name="description" content="Occasion2B - Index" /><meta name="keywords" content="forum,social,alternative news,ukraine,News, Discussion, bird flu, pandemic ,ebola, iraq,isis,syria,russia,WWIII" />
	<title>Occasion2B - Index - Occasion2B - #news</title>
 <meta name="robots" content="noindex" />
	<link rel="canonical" href="http://occasion-to-be.com/forum/index.php" />
	<link rel="help" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=help" />
	<link rel="search" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=search" />
	<link rel="contents" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;" />
	<link rel="alternate" type="application/rss+xml" title="Occasion2B - RSS" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;type=rss;action=.xml" />
<!-- <script type="text/javascript" src="//www3.smartchatbox.com/shoutbox/start.php?key=676867472"></script> -->
<script type="text/javascript">
  //              DO NOT IMPLEMENT                //
  //       this code through the following        //
  //                                              //
  //   Floodlight Pixel Manager                   //
  //   DCM Pixel Manager                          //
  //   Any system that places code in an iframe   //
    (function () {
        var s = document.createElement("script");
        s.type = "text/javascript";
        s.async = true;
        s.src = ("https:" == document.location.protocol ? "https://s" : "http://i")
          + ".po.st/static/v4/post-widget.js#publisherKey=640hacib4cpc1hoaoh5f";
        var x = document.getElementsByTagName("script")[0];
        x.parentNode.insertBefore(s, x);
     })();
</script>

<script type="text/javascript">
		var ct_date = new Date(), 
			ctTimeMs = new Date().getTime(),
			ctMouseEventTimerFlag = true, //Reading interval flag
			ctMouseData = [],
			ctMouseDataCounter = 0;

		function ctSetCookie(c_name, value) {
			document.cookie = c_name + "=" + encodeURIComponent(value) + "; path=/";
		}

		ctSetCookie("ct_ps_timestamp", Math.floor(new Date().getTime()/1000));
		ctSetCookie("ct_fkp_timestamp", "0");
		ctSetCookie("ct_pointer_data", "0");
		ctSetCookie("ct_timezone", "0");

		setTimeout(function(){
			ctSetCookie("ct_checkjs", "3c6be19703bbd18db3f2e2f9ee8e4d9e");
			ctSetCookie("ct_timezone", ct_date.getTimezoneOffset()/60*(-1));
		},1000);

		//Writing first key press timestamp
		var ctFunctionFirstKey = function output(event){
			var KeyTimestamp = Math.floor(new Date().getTime()/1000);
			ctSetCookie("ct_fkp_timestamp", KeyTimestamp);
			ctKeyStopStopListening();
		}

		//Reading interval
		var ctMouseReadInterval = setInterval(function(){
			ctMouseEventTimerFlag = true;
		}, 150);
			
		//Writting interval
		var ctMouseWriteDataInterval = setInterval(function(){
			ctSetCookie("ct_pointer_data", JSON.stringify(ctMouseData));
		}, 1200);

		//Logging mouse position each 150 ms
		var ctFunctionMouseMove = function output(event){
			if(ctMouseEventTimerFlag == true){
				
				ctMouseData.push([
					Math.round(event.pageY),
					Math.round(event.pageX),
					Math.round(new Date().getTime() - ctTimeMs)
				]);
				
				ctMouseDataCounter++;
				ctMouseEventTimerFlag = false;
				if(ctMouseDataCounter >= 100){
					ctMouseStopData();
				}
			}
		}

		//Stop mouse observing function
		function ctMouseStopData(){
			if(typeof window.addEventListener == "function"){
				window.removeEventListener("mousemove", ctFunctionMouseMove);
			}else{
				window.detachEvent("onmousemove", ctFunctionMouseMove);
			}
			clearInterval(ctMouseReadInterval);
			clearInterval(ctMouseWriteDataInterval);				
		}

		//Stop key listening function
		function ctKeyStopStopListening(){
			if(typeof window.addEventListener == "function"){
				window.removeEventListener("mousedown", ctFunctionFirstKey);
				window.removeEventListener("keydown", ctFunctionFirstKey);
			}else{
				window.detachEvent("mousedown", ctFunctionFirstKey);
				window.detachEvent("keydown", ctFunctionFirstKey);
			}
		}

		if(typeof window.addEventListener == "function"){
			window.addEventListener("mousemove", ctFunctionMouseMove);
			window.addEventListener("mousedown", ctFunctionFirstKey);
			window.addEventListener("keydown", ctFunctionFirstKey);
		}else{
			window.attachEvent("onmousemove", ctFunctionMouseMove);
			window.attachEvent("mousedown", ctFunctionFirstKey);
			window.attachEvent("keydown", ctFunctionFirstKey);
		}
	</script>
	<script type="text/javascript"><!-- // --><![CDATA[
		var smf_avatarMaxWidth = 170;
		var smf_avatarMaxHeight = 600;
	window.addEventListener("load", smf_avatarResize, false);
	// ]]></script>
<meta name="p:domain_verify" content="0ab0b2814f05aa2744ead74fafdcb2e6"/>

</head><html>

<!-- (Left-Top start) // -->
<center><table border="4" bgcolor="whitesmoke"  cellpadding="10" cellspacing="0" width="99%">

	 
<!-- change backgroun color for all here -->
<table border="3" bgcolor="whitesmoke" cellpadding="5" cellspacing="5" width="99%" align="center">

	 <td width="17%" valign="top" align="center"  cellpadding="2" >


<center><a href="http://www.feedspot.com/infiniterss.php?pubid=p_7958a51f7f9d&q=site:https%3A%2F%2Foccasion-to-be.com%2Fforum%2Findex.php%3Ftype%3Drss%3Baction%3D.xml" target="_blank"><div style="margin-left: 12px;padding: 0;position: relative;float: left;height: 18px;font-weight: bold;color: #333;text-decoration: none;text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);white-space: nowrap;vertical-align: top;background-color: white;;border: #CCC solid 1px;-webkit-border-radius: 3px;border-radius: 3px;outline: none;background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));"><i style="margin: 0;padding: 0;position: absolute;top: 1px;left: 1px;width: 16px;height: 16px;background: transparent url(//st3.feedspot.co.in/img/feed.png) 0 0 no-repeat;"></i><span style="vertical-align:middle;margin: 0;padding: 0 6px 0 23px;display: inline-block;*display: inline;zoom: 1;">Follow on Feedspot</span></div></a><br><br>

<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5541f478072bad4c" async="async"></script>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<div class="addthis_horizontal_follow_toolbox" ></div>
  <center><br>
<iframe src="http://teilhard.global-mind.org/gcpdot/gcp.html" height="48" width="48" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" ></iframe></center> 
<br><font face="tahoma" size="2"  ><b> <br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,32.0.html"><font color="Red"> Live TV <img src="http://occasion-to-be.com/images/tv_icon.png"> </a></br><br><a class="button_strip_new_topic" href="https://occasion-to-be.com/forum/index.php/board,1.0.html/?action=post"><span class="last">Post New Topic</span></a><br>
<br><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=recent"><font color="Green">Most recent Posts</font></a><br><br>

 </center>

<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;theme=34">&bull; Mobile Responsive Theme</a>
<br><br>
<a href="http://occasion-to-be.com/">&bull; Occasion2b Main Page</a>
<br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,1.0.html">&bull; General Discussion</a>
<br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,2.0.html">&bull; Disease Outbreak News </a>
<br><br>
<a href="http://yonews.org">&bull;<font color="Red"> YoNews.org </a></br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,3.0.html">&bull; <font color="Red">YoNews Portal</font></a>
<br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,5.0.html">&bull; All Things Prepper</A>
<br><br>
<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,8.0.html">&bull; Game Area</a>
<br><br>
<a href="http://occasion-to-be.com/forum/archive2.php">&bull; Archives</a></font>
</font>
<br><center><br><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- square yonews -->
<ins class="adsbygoogle"
     style="display:inline-block;width:200px;height:200px"
     data-ad-client="ca-pub-1213939540514690"
     data-ad-slot="6233945101"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br><br>
<a href="http://whatisanarchism.org/"><img src="http://whatisanarchism.org/robot.gif" width="180" target="_blank"></a><br><br>
<!-- start feedwind code --><iframe src="https://occasion-to-be.com/around.php" frameborder="0" width="190" scrolling="no" align="center" height="750"></iframe><!-- end feedwind code --></center>

<center>
<br>
<CENTER><A HREF="http://www.n3kl.org/sun/noaa.html"><IMG WIDTH=121 
HEIGHT=21 BORDER=0 ALT="Status" SRC="http://www.n3kl.org/sun/images/status.gif?"></A></CENTER>
<CENTER><A HREF="http://www.n3kl.org/sun/noaa.html"><IMG WIDTH=121 
HEIGHT=21 BORDER=0 ALT="Status" SRC="http://www.n3kl.org/sun/images/kpstatus.gif?"></A></CENTER>

From <A HREF="http://www.n3kl.org/sun/noaa.html">n3kl.org</A></CENTER>
<br>
 <A HREF="http://www.n3kl.org/sun/noaa.html">The sun Today</A></CENTER>
<br>
<center><iframe src="https://occasion-to-be.com/images/c2frame.php" height="140" width="140" scrolling="no" marginwidth="0" marginheight="0" frameborder="2" ></iframe><br><font face="tahoma" size="1" > Right click and view<br> for larger image</center>

 <br><font face="tahoma" size="2" >


 <div>

<a href="https://feeds2.feedburner.com/occasion2b"><br><font face="Roman" size="2" ><br><img src="https://occasion-to-be.com/images/occasion.png" alt="Occasion2b feedburner" border="0" height="17"></a>
</center><br>
<br> 
<a href="https://feedburner.google.com/fb/a/mailverify?uri=Occasion2b&amp;loc=en_US"><font face="tahoma" font size="1"> Subscribe by Email</a>
<br>
<br><div class="twibble-share-widget" data-type="subscribe" data-size="large" data-feed="0ecc9e2f-a357-47bb-96bb-2f1e78ace575"></div>
<script type="text/javascript" src="http://twibble.io/wro/widgets.js"></script>
</div>
<br>

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- square yonews -->
<ins class="adsbygoogle"
     style="display:inline-block;width:200px;height:200px"
     data-ad-client="ca-pub-1213939540514690"
     data-ad-slot="6233945101"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br>
</font>

	 </td>
	    <td width="99%" valign="top" align="left">
	 <table border="0" cellpadding="4" cellspacing="0">

	
		  <!-- top contents // -->

<body>
        <script type="text/javascript" src="http://occasion-to-be.com/forum/Themes/default/scripts/cls.tc.js"></script><a id="scroll-to-top"></a>
	<div id="the_user_menu"><div id="the_user_menu-wrap">
		<div class="floatright">
			<ul class="social-icons">
						<li class="rss"><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;type=rss" target="_blank">RSS</a></li>
			</ul>
		</div>
		<div class="floatleft">
			<ul class="the_user_menu_box">
				<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;" title="Home"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/theme_custom/home.png" alt="Home" /></a></li>
				<li><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/theme_custom/search.png" alt="Search" />
					<ul>
								<li><form id="search_form" action="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=search2" method="post" accept-charset="UTF-8">
									<input type="text" name="search" value="" class="input_text" />&nbsp;
									<input type="submit" name="submit" value="Search" class="button_submit" />
									<input type="hidden" name="advanced" value="0" />
									</form></li>
					</ul>
				</li>
			</ul>
		</div>
		<div class="floatleft">
			<ul class="the_user_menu_box">
				<li><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/theme_custom/login.png" alt="Login" />
					<ul><li>
						<script type="text/javascript" src="http://occasion-to-be.com/forum/Themes/default/scripts/sha1.js"></script>
						<form id="guest_form" action="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=login2" method="post" accept-charset="UTF-8"  onsubmit="hashLoginPassword(this, '4cd8509bb19e842095a35adddd1d6b6a');">
							<span>Username: </span><input type="text" name="user" size="10" class="input_text" />
							<span>Password: </span><input type="password" name="passwrd" size="10" class="input_password" />
							<select name="cookielength">
								<option value="60">1 Hour</option>
								<option value="1440">1 Day</option>
								<option value="10080">1 Week</option>
								<option value="43200">1 Month</option>
								<option value="-1" selected="selected">Forever</option>
							</select>
							<input type="submit" value="Login" class="button_submit" />
<input type="hidden" name="cd82b314" value="4cd8509bb19e842095a35adddd1d6b6a" />
						</form>
						<br />Did you miss your <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=activate">activation email</a>?
					</li></ul>
				</li>
			</ul>
		</div>

		<div class="floatleft">
			<ul class="the_user_menu_dropdown">
				<li>Hello Guest
					<ul class="the_user_menu_dropdown">
						<li>Choose Theme:</li>
						<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;variant=blue">Blue</a></li>
						<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;variant=light_blue">Light Blue</a></li>
						<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;variant=green_lavender">Green/Lavender</a></li>
						<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;variant=dark_orange">Dark Orange</a></li>
					</ul>
				</li>
			</ul>
		</div>
	</div></div>

	<div id="header-wrap"><div id="header">
<!-- 		<div id="logo"> -->
	<!-- 		<img src="http://occasion-to-be.com/images/logo.gif" alt="Occasion2B" /> -->
	<!-- 		<div id="slogan">First place on Earth to see tomorrow</div> -->
<!-- 		</div> -->
	</div></div>
<div id="main_menu_area-wrap">
	<div id="main_menu_area">
		<div class="main_menu_table">
			<ul id="the_main_menu">
				<li><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;/board,32.0/" target="_blank">TV <img src="http://occasion-to-be.com/images/tv_icon.png"></a>
				</li>
				<li id="button_home">
					<a class="active firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;">
						<span class="last firstlevel">Home</span>
					</a>
				</li>
				<li id="button_help">
					<a class="firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=help">
						<span class="firstlevel">Help</span>
					</a>
				</li>
				<li id="button_search">
					<a class="firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=search">
						<span class="firstlevel">Search</span>
					</a>
				</li>
				<li id="button_calendar">
					<a class="firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=calendar">
						<span class="firstlevel">Calendar</span>
					</a>
					<ul>
						<li>
							<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=calendar">
								<span>View Calendar</span>
							</a>
						</li>
						<li>
							<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=calendar;sa=post">
								<span class="last">Post Event</span>
							</a>
						</li>
					</ul>
				</li>
				<li id="button_login">
					<a class="firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=login">
						<span class="firstlevel">Login</span>
					</a>
				</li>
				<li id="button_register">
					<a class="firstlevel" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=register">
						<span class="last firstlevel">Register</span>
					</a>
				</li>
		</ul></div></div> <form action="https://occasion-to-be.com/forum" id="cse-search-box">
  <div>
    <input type="hidden" name="cx" value="partner-pub-1213939540514690:1254224706" />
    <input type="hidden" name="cof" value="FORID:10" />
    <input type="hidden" name="ie" value="UTF-8" />
    <input type="text" name="q" size="42" />
    <input type="submit" name="sa" value="Search" />
  </div>
</form>

<script type="text/javascript" src="https://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
<div id="cse-search-results"></div>
<script type="text/javascript">
  var googleSearchIframeName = "cse-search-results";
  var googleSearchFormName = "cse-search-box";
  var googleSearchFrameWidth = 800;
  var googleSearchDomain = "www.google.com";
  var googleSearchPath = "/cse";
</script><br><table background="https://occasion-to-be.com/images/logo.gif" width="350" height="40" cellpadding="0" background-size: 100% 100% align="left" margin="20" valign="right" border="0"></div>
<td> <font face="script" size="3" color="White">www.occasion-to-be.com</font></td>
<tr align="center">
  <td width="20" height="50" align="right"><iframe src="http://global-mind.org/gcpdot/gcp.html" height="11" width="14" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" valign="right"></iframe></td>
 </td>
  <td width="29" align="center"><iframe src="http://global-mind.org/gcpdot/gcp.html" height="14" width="14" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" valign="right"></iframe> </td>
</tr>
<tr>
  <td width="100" align="center"><iframe src="http://global-mind.org/gcpdot/gcp.html" height="24" width="24" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" valign="right"></iframe></td>
  <td width="70" align="center"><iframe src="http://global-mind.org/gcpdot/gcp.html" height="12" width="19" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" valign="right"></iframe></td>
  <td width="10" align="center"><iframe src="http://global-mind.org/gcpdot/gcp.html" height="32" width="32" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" valign="right"></iframe></td>
</tr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<script type="text/javascript" src="https://www.google.com/afsonline/show_afs_search.js"></script><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- occasion2b-top -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-1213939540514690"
     data-ad-slot="6367898704"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</table>
</div></div>
 <div id="main_content-wrap">
<div id="main_content">
	<div class="navigate_section">
		<ul>
			<li class="last">
				<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;"><span>Occasion2B</span></a>
			</li>
		</ul>
	</div>
	<div id="index_common_stats">
		Members: 141 &nbsp;&#8226;&nbsp; Posts: 73630 &nbsp;&#8226;&nbsp; Topics: 68734
		
	</div>
	<div id="boardindex_table">
		<table class="table_list">
			<tbody class="header" id="category_1">
				<tr>
					<td colspan="4">
						<div class="cat_bar">
							<h3 class="catbg">
								<a id="c1"></a>Main Topics
							</h3>
						</div>
					</td>
				</tr>
			</tbody>
			<tbody class="content" id="category_1_boards">
				<tr id="board_1" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=1.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=1.0" name="b1">General Discussion</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=1;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p></p>
					</td>
					<td class="stats windowbg">
						<p>533 Posts <br />
						463 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by perrycl2<br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222749.msg235793#new" title="Alluring men photo blog">Alluring men photo blog</a><br />
						on <strong>Yesterday</strong> at 11:11:39 PM
						</p>
					</td>
				</tr>
				<tr id="board_3" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0" name="b3">YoNews Portal</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=3;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p>Post to YoNews - 
Posts to this area are pushed through the Social Stream</p>
					</td>
					<td class="stats windowbg">
						<p>38126 Posts <br />
						38079 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a><br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222780.msg235819#new" title="Mind-Altering Drug Makers Fund Anti-Gun Mainstream Media">Mind-Altering Drug Maker...</a><br />
						on <strong>Today</strong> at 03:35:02 AM
						</p>
					</td>
				</tr>
				<tr id="board_29" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0" name="b29">Today's News</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=29;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p>A selection of stories from various news sources</p>
					</td>
					<td class="stats windowbg">
						<p>13644 Posts <br />
						13641 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=20319">News Bot</a><br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222777.msg235816#new" title="‘Lost’ ancient Mexican city had as many buildings as Manhattan, laser map shows">‘Lost’ ancient Mexican c...</a><br />
						on <strong>Today</strong> at 03:00:02 AM
						</p>
					</td>
				</tr>
				<tr id="board_32" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=32.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=32.0" name="b32">Live TV</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=32;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p></p>
					</td>
					<td class="stats windowbg">
						<p>14 Posts <br />
						14 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by Anonymous Poster<br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=210670.msg223658#new" title="Seatlechannel.org">Seatlechannel.org</a><br />
						on Dec  03, 2017 &nbsp;&nbsp; 03:24:30 PM
						</p>
					</td>
				</tr>
				<tr id="board_2" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=2.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=2.0" name="b2"> Disease Outbreak News</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=2;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p></p>
					</td>
					<td class="stats windowbg">
						<p>69 Posts <br />
						66 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=2">beast</a><br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222601.msg235634#new" title="World's first human case of H7N4 avian flu reported in China - GantDaily.com - ">World's first human case...</a><br />
						on Feb  15, 2018 &nbsp;&nbsp; 09:41:33 PM
						</p>
					</td>
				</tr>
				<tr id="board_5" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=5.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=5.0" name="b5">All things Prepper</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=5;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p>Preparation and Survival</p>
					</td>
					<td class="stats windowbg">
						<p>15 Posts <br />
						14 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a><br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=214978.msg227980#new" title="9 Overlooked Things That Can Go Wrong With Your Survival Plan">9 Overlooked Things That...</a><br />
						on Dec  25, 2017 &nbsp;&nbsp; 02:20:03 AM
						</p>
					</td>
				</tr>
				<tr id="board_8" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=8.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=8.0" name="b8">Game Room</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=8;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p>a collection of games to play</p>
					</td>
					<td class="stats windowbg">
						<p>91 Posts <br />
						9 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by Anonymous Poster<br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=118415.msg134105#new" title="Re: Spades">Re: Spades</a><br />
						on Feb  25, 2017 &nbsp;&nbsp; 07:04:23 PM
						</p>
					</td>
				</tr>
				<tr id="board_30" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=30.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=30.0" name="b30">Chat Brat Emergency Meet UP Area</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=30;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p></p>
						<p class="moderators">Moderator: <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=29" title="Board Moderator">Sadie</a></p>
					</td>
					<td class="stats windowbg">
						<p>78 Posts <br />
						10 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by AnonymousHoss<br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=101330.msg232164#new" title="Re: Welcome to Chat Brat Anonymous - North">Re: Welcome to Chat Brat...</a><br />
						on Jan  20, 2018 &nbsp;&nbsp; 08:43:21 AM
						</p>
					</td>
				</tr>
			</tbody>
			<tbody class="divider">
				<tr>
					<td colspan="4"></td>
				</tr>
			</tbody><tbody><tr><td colspan="4">			</td></tr></tbody>
			<tbody class="header" id="category_2">
				<tr>
					<td colspan="4">
						<div class="cat_bar">
							<h3 class="catbg">
								<a id="c2"></a>Archives
							</h3>
						</div>
					</td>
				</tr>
			</tbody>
			<tbody class="content" id="category_2_boards">
				<tr id="board_6" class="windowbg2">
					<td class="icon windowbg">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=6.0">
							<img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/_dark_orange/off.png" alt="No New Posts" title="No New Posts" />
						</a>
					</td>
					<td class="info">
						<a class="subject" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=6.0" name="b6"> Archives</a>&nbsp;<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;board=6;type=rss"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/rss.png" alt="rss" /></a>

						<p>Topics started over one year ago.</p>
					</td>
					<td class="stats windowbg">
						<p>21060 Posts <br />
						16438 Topics
						</p>
					</td>
					<td class="lastpost">
						<p><strong>Last post</strong>  by Undisclosed<br />
						in <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=118727.msg130787#new" title="Fukushima BREAKING NEWS; 2/14/17 Japan DID TRUMP JUST TO BIG TO FAIL NUKE ENERGY TOSHIBA - YouTube">Fukushima BREAKING NEWS;...</a><br />
						on Feb  14, 2017 &nbsp;&nbsp; 03:39:22 AM
						</p>
					</td>
				</tr>
			</tbody>
			<tbody class="divider">
				<tr>
					<td colspan="4"></td>
				</tr>
			</tbody><tbody><tr><td colspan="4">			</td></tr></tbody>
		</table>
	</div>
	<div id="posting_icons" class="flow_hidden">
		<ul class="reset">
			<li class="floatleft"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/new_none.png" alt="" /> No New Posts</li>
			<li class="floatleft"><img src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/new_redirect.png" alt="" /> Redirect Board</li>
		</ul>
	</div>
	<span class="clear upperframe"><span></span></span>
	<div class="roundframe"><div class="innerframe">
		<div class="cat_bar">
			<h3 class="catbg">
				<img class="icon" id="upshrink_ic" src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/collapse.gif" alt="*" title="Shrink or expand the header." style="display: none;" />
				Occasion2B - Info Center
			</h3>
		</div>
		<div id="upshrinkHeaderIC">
			<div class="title_barIC">
				<h4 class="titlebg">
					<span class="ie6_header floatleft">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=recent"><img class="icon" src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/post/xx.gif" alt="Recent Posts" /></a>
						Recent Posts
					</span>
				</h4>
			</div>
			<div class="hslice" id="recent_posts_content">
				<div class="entry-title" style="display: none;">Occasion2B - Recent Posts</div>
				<div class="entry-content" style="display: none;">
					<a rel="feedurl" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;type=webslice">Subscribe to Webslice</a>
				</div>
				<dl id="ic_recentposts" class="middletext">
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222780.msg235819;topicseen#msg235819" rel="nofollow">Mind-Altering Drug Makers Fund Anti-Gun Mainstream Media</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 03:35:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222779.msg235818;topicseen#msg235818" rel="nofollow">That’s It? Mueller Indicts A Few Russian Nationals For Troll Campaign to Influence 2016 Election</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 03:35:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222778.msg235817;topicseen#msg235817" rel="nofollow">Five Major Revelations the Mainstream Media is Ignoring About the Florida Shooting</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 03:35:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222777.msg235816;topicseen#msg235816" rel="nofollow">‘Lost’ ancient Mexican city had as many buildings as Manhattan, laser map shows</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=20319">News Bot</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0">Today's News</a>)</dt>
					<dd><strong>Today</strong> at 03:00:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222776.msg235815;topicseen#msg235815" rel="nofollow">Evangelical still ahead as lead shrinks in Costa Rica election: poll</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=20319">News Bot</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0">Today's News</a>)</dt>
					<dd><strong>Today</strong> at 03:00:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222775.msg235814;topicseen#msg235814" rel="nofollow">5 Reasons To Question The Florida Marjory Stoneman Douglas Shooting</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:35:03 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222774.msg235813;topicseen#msg235813" rel="nofollow">Very strong and shallow M7.2 earthquake hits Oaxaca, Mexico</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:35:03 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222773.msg235812;topicseen#msg235812" rel="nofollow">“He Has Her Blood On His Hands”: Anti-Gun Liberals Viciously Attack Father Of Florida Shooting Victim For Supporting Donald Trump</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:35:03 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222772.msg235811;topicseen#msg235811" rel="nofollow">Larry Klayman Seeks Appointment as Special Counsel to Root Out Mueller Et Al.</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:01:47 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222771.msg235810;topicseen#msg235810" rel="nofollow">Petition Warning The World About 5G At The Winter Olympics</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:01:47 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222770.msg235809;topicseen#msg235809" rel="nofollow">The Allied Holocaust in Dresden - Veterans Today</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 02:01:47 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222769.msg235808;topicseen#msg235808" rel="nofollow">Strong 7.2 Mexico quake cuts power and damages homes; no deaths reported</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=20319">News Bot</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0">Today's News</a>)</dt>
					<dd><strong>Today</strong> at 02:00:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222768.msg235807;topicseen#msg235807" rel="nofollow">Nine dead in fire at waste facility in southern China: Xinhua</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=20319">News Bot</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=29.0">Today's News</a>)</dt>
					<dd><strong>Today</strong> at 02:00:02 AM</dd>
					<dt><strong><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;topic=222767.msg235806;topicseen#msg235806" rel="nofollow">School Shooting: Thoughts on the Unexplained - Veterans Today</a></strong> by <a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=profile;u=5906">YoNews</a> (<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;board=3.0">YoNews Portal</a>)</dt>
					<dd><strong>Today</strong> at 01:35:02 AM</dd>
				</dl>
			</div>
			<div class="title_barIC">
				<h4 class="titlebg">
					<span class="ie6_header floatleft">
						<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=who"><img class="icon" src="http://occasion-to-be.com/forum/Themes/Lucid_Dreams_v2/images/icons/online.gif" alt="Users Online" /></a>
						Users Online
					</span>
				</h4>
			</div>
			<p class="inline stats">
				<a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=who">143 Guests, 0 Users</a>
			</p>
			<p class="inline smalltext">
			</p>
			<p class="last smalltext">
				Most Online Today: <strong>201</strong>.
				Most Online Ever: 403 (Nov  15, 2016 &nbsp;&nbsp; 02:05:05 PM)
			</p>
		</div>
	</div></div>
	<span class="lowerframe"><span></span></span>
	<script type="text/javascript"><!-- // --><![CDATA[
		var oInfoCenterToggle = new smc_Toggle({
			bToggleEnabled: true,
			bCurrentlyCollapsed: false,
			aSwappableContainers: [
				'upshrinkHeaderIC'
			],
			aSwapImages: [
				{
					sId: 'upshrink_ic',
					srcExpanded: smf_images_url + '/collapse.gif',
					altExpanded: 'Shrink or expand the header.',
					srcCollapsed: smf_images_url + '/expand.gif',
					altCollapsed: 'Shrink or expand the header.'
				}
			],
			oThemeOptions: {
				bUseThemeSettings: false,
				sOptionName: 'collapse_header_ic',
				sSessionVar: 'cd82b314',
				sSessionId: '4cd8509bb19e842095a35adddd1d6b6a'
			},
			oCookieOptions: {
				bUseCookie: true,
				sCookieName: 'upshrinkIC'
			}
		});
	// ]]></script>
  </div></div><br><!-- <center><div><script type="text/javascript" class="rebelmouse-embed-script" src="https://www.rebelmouse.com/static/js-build/embed/embed.js?site=occasiontobe&height=680&flexible=0&dont_load_new_posts=1&more_button=0&post_limit=6&embed_type=sidebar&scrollbar_theme=default&show_rebelnav=1"></script></center><br><br>
	</div> --><!-- </div><div align="center"></br><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> -->
<!-- occasion billboard -->
<!-- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> -->
<!-- top test -->
<!-- <ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1213939540514690"
     data-ad-slot="7103307909"
     data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script> --></div>
<div id="footer-wrap">
	<div id="footer">
		<div class="floatright">
			<ul>
				<li><br /></li>
				<li><a href="https://github.com/LinuxPanda/SMF2.0Theme--LucidDreams" title="" target="_blank">Lucid Dreams - Theme by LinuxPanda</a></li>
				<li><br /><br /><br /></li>
				<li>
               <!-- START ClickSafe SMF Change Theme BOTTOM -->
              				<div style="text-align:right; margin: -10px 0 0 0; font-size:12px;">
              					<select id="clicksafe_changer_bot" onchange="cls_switch_theme_bot();">
                        <optgroup label="Change the Theme"><option value="1">SMF Default Theme - Curve</option><option value="21">Core Theme</option><option value="23" selected="selected">Lucid Dreams</option><option value="24">Giggleyo</option><option value="25">vVide - Responsive for Phone - Tablet</option><option value="27">SilentWave</option><option value="29">Blue Eyes</option><option value="30">AlphaCentauri</option><option value="31">Exodus</option><option value="32">GoneFishin</option><option value="33">ModernStyle</option><option value="34">Dokuzharf</option><option value="35">Vertex</option>
                        </optgroup>
              					</select> 
              				</div>
                <!-- END ClickSafe SMF Change Theme BOTTOM -->
                  
			<span class="smalltext" style="display: inline; visibility: visible; font-family: Verdana, Arial, sans-serif;"><a href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=credits" title="Simple Machines Forum" target="_blank" class="new_win">SMF 2.0.15</a> |
 <a href="http://www.simplemachines.org/about/smf/license.php" title="License" target="_blank" class="new_win">SMF &copy; 2017</a>, <a href="http://www.simplemachines.org" title="Simple Machines" target="_blank" class="new_win">Simple Machines</a><br /><span class="smalltext"><a href="http://www.smfads.com" target="_blank">SMFAds</a> for <a href="http://www.createaforum.com" title="Forum Hosting" target="_blank">Free Forums</a></span><br /><a href="http://www.createaforum.com" target="_blank">Simple Audio Video Embedder</a>
			</span></li>
				<li><a id="button_xhtml" href="https://validator.w3.org/check?uri=referer" target="_blank" class="new_win" title="Valid XHTML 1.0!"><span>XHTML</span></a>
				<a id="button_rss" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;action=.xml;type=rss" class="new_win"><span>RSS</span></a>
				<a id="button_wap2" href="http://occasion-to-be.com/forum/index.php?PHPSESSID=ueoev8ec1vhoj8e41n30hfq3t1&amp;wap2" class="new_win"><span>WAP2</span></a></li>
			</ul>
		</div>
		<div class="floatleft">
			<ul>
					<li><br /></li>
					<li><br /></li>
					<li><br /></li>
					<li><br /></li>
					<li>Occasion2B &copy; 2018 | All Rights Reserved</li>
					<li><br /></li>
			</ul>
		</div>
	</div>
</div>
<a id="scroll-to-bottom"></a><div id=""><div id="the_breadcrumb_menu-wrap">
<table width="850" border="0" bgcolor="#E1e1f1">
<td width="850">
	<div class="center" >
	<ul class="the_user_menu_box">
		<li>73630 Posts - 68734 Topics - 141 Members</li></td></table>
	</ul>
	</div>
	
	<div class="floatright">
		<ul class="arrow">
			<li class="arrow_up"><a href="#scroll-to-top" title=" Go Up" onclick="ScrollToTop()"></a></li>
			<li class="arrow_down"><a href="#scroll-to-bottom" title=" Go Down" onclick="ScrollToBottom()"></a></li>
		</ul>
	</div>

<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src="https://embed.tawk.to/59cebc8fc28eca75e4623341/default";
s1.charset="UTF-8";
s1.setAttribute("crossorigin","*");
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body></html>