<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Small Business Issues &#38; Opportunities</title>
	<atom:link href="http://sentry-technologies.com/SBI/feed/" rel="self" type="application/rss+xml" />
	<link>http://sentry-technologies.com/SBI</link>
	<description>For the Experienced and Novice Entrepreneur Alike</description>
	<lastBuildDate>Sun, 11 Jan 2009 18:32:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>High Priorities for Great SEO</title>
		<link>http://sentry-technologies.com/SBI/2009/01/high-priorities-for-great-seo/</link>
		<comments>http://sentry-technologies.com/SBI/2009/01/high-priorities-for-great-seo/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 18:32:38 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Building Your Web Presence]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[site ranking]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=42</guid>
		<description><![CDATA[Write Great Content » I&#8217;ve worked with many web clients who want their site to be ranked high in the search engines, and want people to be able to find their site by searching for all sorts of keywords, problem is they don&#8217;t want to put in the work of writing good content (or pay [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2009/01/high-priorities-for-great-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-Submitting PHP Tell-A-Friend form</title>
		<link>http://sentry-technologies.com/SBI/2009/01/self-submitting-php-tell-a-friend-form/</link>
		<comments>http://sentry-technologies.com/SBI/2009/01/self-submitting-php-tell-a-friend-form/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 16:59:50 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[self-submitting form]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=39</guid>
		<description><![CDATA[Want to put a &#8220;tell a friend&#8221; form on your website so visitors can easily tell their friends about your site?  Below is the code for a self-submitting PHP tell-a-friend form (which could also easily be adapted as a standard contact form).
Simply change &#8220;domain&#8221; to your website URL, and paste the code where you want [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2009/01/self-submitting-php-tell-a-friend-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Print Page button</title>
		<link>http://sentry-technologies.com/SBI/2009/01/javascript-print-page-button/</link>
		<comments>http://sentry-technologies.com/SBI/2009/01/javascript-print-page-button/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 13:01:39 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=37</guid>
		<description><![CDATA[here&#8217;s a very simple javascript to place a link on a webpage to facilitate the user&#8217;s printing of that page:
simply paste the code below where you want the button to appear:
&#60;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&#62;
&#60;!&#8211; Begin
if (window.print) {
document.write(&#8216;&#60;form&#62;Click Here To &#8216;
+ &#8216;&#60;input type=button name=print value=&#8221;Print&#8221; &#8216;
+ &#8216;onClick=&#8221;javascript:window.print()&#8221;&#62; This Page!&#60;/form&#62;&#8217;);
}
// End &#8211;&#62;
&#60;/script&#62;
]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2009/01/javascript-print-page-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Display Random Text from a list</title>
		<link>http://sentry-technologies.com/SBI/2009/01/javascript-display-random-text-from-a-list/</link>
		<comments>http://sentry-technologies.com/SBI/2009/01/javascript-display-random-text-from-a-list/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 18:46:53 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[random text]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=32</guid>
		<description><![CDATA[Did you ever want to display a random text from a pre-populated list?  Maybe you wanted to randomly display a client testimonial from a list of 10&#8230; well, here&#8217;s the script you need.
place the following code in the head of your document (somewhere between the &#60;head&#62; and &#60;/head&#62; tags):
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;../scripts/rotate.js&#8221;&#62;&#60;/script&#62;
now, place the following code [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2009/01/javascript-display-random-text-from-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Time is Now!</title>
		<link>http://sentry-technologies.com/SBI/2008/11/the-time-is-now/</link>
		<comments>http://sentry-technologies.com/SBI/2008/11/the-time-is-now/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 17:47:45 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[grow your business]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=30</guid>
		<description><![CDATA[The bad news: the economy is down, the stock markets are down, housing markets are down, and unemployment is up.
The good news: There&#8217;s not a better time to start your own business!
That&#8217;s right, with the economy slumping and people losing jobs left and right, there&#8217;s not a better time to start your own business and [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/11/the-time-is-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a simple javascript Popup Div</title>
		<link>http://sentry-technologies.com/SBI/2008/10/creating-a-simple-javascript-popup-div/</link>
		<comments>http://sentry-technologies.com/SBI/2008/10/creating-a-simple-javascript-popup-div/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 22:18:33 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=27</guid>
		<description><![CDATA[Sometimes you want to create a div in your document that opens a pop-up window that shows another webpage, but that isn&#8217;t actually another browser window.  The code below will do just that for you in a simple manner.  You can change the page that shows in the popup by simply changing the &#8220;src&#8221; from [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/10/creating-a-simple-javascript-popup-div/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ChildImpressions.com</title>
		<link>http://sentry-technologies.com/SBI/2008/10/childimpressionscom/</link>
		<comments>http://sentry-technologies.com/SBI/2008/10/childimpressionscom/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:37:11 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Client Site Spotlight]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=23</guid>
		<description><![CDATA[ChildImpressions.com is an html-based website, with it&#8217;s formatting layed out with tableless css.  There are a few flash elements &#8211; the hands at the top, the menu bar, and the rotating quotes on the right.
This is another simple site, with a clean design, that is meant to be a key marketing piece for the business [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/10/childimpressionscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing the Right Web Hosting Company</title>
		<link>http://sentry-technologies.com/SBI/2008/07/choosing-the-right-web-hosting-company/</link>
		<comments>http://sentry-technologies.com/SBI/2008/07/choosing-the-right-web-hosting-company/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 02:38:09 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Building Your Web Presence]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=19</guid>
		<description><![CDATA[Before you can establish your web presence, you are going to have to choose a web hosting company (unless you have the technical skills to host the site yourself that is).  With the plethora of web hosting companies out there today, the choices can be daunting and since the comparisons are rarely apples to [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/07/choosing-the-right-web-hosting-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Simple Web Acronym Clarification</title>
		<link>http://sentry-technologies.com/SBI/2008/07/some-simple-web-acronym-clarification/</link>
		<comments>http://sentry-technologies.com/SBI/2008/07/some-simple-web-acronym-clarification/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 02:33:11 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Building Your Web Presence]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=17</guid>
		<description><![CDATA[Hello All,
today I thought it would be useful for some to simply break down some of the acronyms thrown around in the web design and web development world&#8230;
1. HTML &#8211; HyperText Markup Language &#8211; the basis of the web.  HTML is the basic building block which web browsers read in order to render web [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/07/some-simple-web-acronym-clarification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Warning Signs &#8211; ways to avoid the wrong contractor</title>
		<link>http://sentry-technologies.com/SBI/2008/06/seo-warning-signs-ways-to-avoid-the-wrong-contractor/</link>
		<comments>http://sentry-technologies.com/SBI/2008/06/seo-warning-signs-ways-to-avoid-the-wrong-contractor/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 13:59:10 +0000</pubDate>
		<dc:creator>Brian C Famous</dc:creator>
				<category><![CDATA[Building Your Web Presence]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://sentry-technologies.com/SBI/?p=16</guid>
		<description><![CDATA[With so much emphasis put on internet advertising these days, it&#8217;s no wonder that companies are willing to spend big dollars (and i do mean BIG dollars) to get their sites ranked at the top of searches on all of the major search engines.  To do this organically (without pay-per-click advertising) is a detailed [...]]]></description>
		<wfw:commentRss>http://sentry-technologies.com/SBI/2008/06/seo-warning-signs-ways-to-avoid-the-wrong-contractor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
