<?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>Welcome to CommonSenseMarketer &#187; Uncategorized</title>
	<atom:link href="http://commonsensemarketer.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://commonsensemarketer.com</link>
	<description>No Hype, No Spin...Just What Really Works</description>
	<lastBuildDate>Wed, 28 Mar 2012 12:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Formatting Secrets for Kindle and Nook EBooks</title>
		<link>http://commonsensemarketer.com/2012/254/</link>
		<comments>http://commonsensemarketer.com/2012/254/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 17:18:25 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Kindle Publishing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=254</guid>
		<description><![CDATA[Are you a writer, do you have a story that needs to be told? It has never been easier or more economical to self publish your book or e-book than it is today. Selling your creation with the rapidly expanding marketplace is easier than ever before, You have instant access to many places to sell [...]]]></description>
			<content:encoded><![CDATA[<h4><span style="color: #333333;"><em>Are you a writer, do you have a story that needs to be told? It has never been easier or more economical to self publish your book or e-book than it is today. Selling your creation with the rapidly expanding marketplace is easier than ever before, You have instant access to many places to sell both print and digital copies of your masterpiece. Amazon and Barnes &amp; Noble are just two of the many available, they are also the two largest markets for instantly downloadable e-books. The hardest part of putting your e-book online, other than the actual writing, is getting formatted correctly for the market you want to sell from. This excellent article, while bit long, covers everything you need to know to get your e-book loaded and ready to sell.</em></span></h4>
<p>Formatting Secrets for Kindle and Nook EBooks</p>
<p><a href="http://www.flickr.com/photos/87346352@N00/4274769864" target="_blank"><img class="zemanta-img-inserted" title="Nook and Kindle" src="http://farm3.static.flickr.com/2715/4274769864_7cf689f6b3_m.jpg" alt="Nook and Kindle" /></a>By <a href="http://ezinearticles.com/?expert=George_Peirson">George Peirson</a></p>
<p>Formatting an eBook for use on a web site or for sending by email using the PDF file format is relatively easy. Most popular word processors and page design programs can export to the PDF file format and those exports usually accurately render the PDF to match the original created in Word, InDesign, or whatever. Formatting for the Amazon Kindle or Barnes &amp; Nook is a completely different proposition. Some programs like InDesign have plug-ins that supposedly save to the eBook format, but these are notoriously inaccurate. So exactly how do you properly, and easily, format a file for Kindle or Nook?<span id="more-254"></span></p>
<p>The Kindle format and also the Nook format are based on HTML, so the obvious answer to the previous question is to do your formatting in HTML. Most word processors and page layout programs can save to HTML, so that is the first step. Then open the file in your favorite HTML editor, I like using Dreamweaver but all of these techniques are done at the code view so any standard HTML editor will work. You can even use a plain text editor like Windows Notepad if you like. The Kindle Fire can take some HTML 5 coding with CSS3, but we will be sticking with more basic formatting in this discussion.</p>
<p>What we want is basic HTML, with all excessive formatting removed. If you are formatting for the Kindle and there is a cover image, remove it. Kindle works best if you upload the cover image separately from the eBook file. In the Nook you can leave it attached. For a professional look you want to start the actual eBook with a Title Page, followed by a Copyright Page. You only need basic information on the Title Page, first of course the title of the eBook as text, don&#8217;t use a picture for the title, keep it text. You can follow this by a smaller picture similar to the cover of the book if you like, but don&#8217;t put a small image of the cover here. That just looks unprofessional. What I frequently do is to use the same art as the cover if it is interesting enough but without the text.</p>
<p>The copyright page can contain a lot of information but the most important part is a properly formatted copyright. This is in the form of &#8220;copyright date name&#8221;, here is an example: copyright 2012 George Peirson. You can replace copyright with the copyright symbol if you like. One more thing the copyright holder has to be either an individual or corporation (which are individuals as far as the US Government is concerned). Aside from corporations, companies cannot own copyrights. So either a person&#8217;s name, or a corporation name, no business names, no doing business as, no partnerships, etc.</p>
<p>Next you will have your table of contents, followed by the rest of the book. We will now look at more specific HTML level formatting techniques.</p>
<p>Start by cleaning out all of the extraneous coding, span tags, any font tags or CSS styling, etc. Leave in paragraph tags or div tags as needed, but pretty much take everything else out. We basically want to start from scratch and keep the formatting to a minimum for the widest compatibility. If you use a program like Dreamweaver you can use the Find and Replace function to speed up this task. Lets say that you have paragraph tags with some formatting in them like this [p], instead of looking through all of your code and removing each instance of [class="bodytext"], instead do a search for [p] and replace with [p]. Also remove any span tags and don&#8217;t forget to remove the closing tags as well, [/span]</p>
<p>We will next put in page breaks as needed, normally you would want each new chapter to start at the top of its own page, and of course the Title Page should be on one page and the Copyright Page should have its own page as well. To start a page at the top of the page on Kindle put in a page break in the code. Make sure you use a page break after the Title Page, after the Copyright page, after the Table of Contents, to give the eBook a professional look. The page break tag goes at the top of the new page in the code view, for instance at the beginning of each chapter before you start any text on that page. Here is the tag to use, this is a special tag that you will not find in normal HTML: [mbp:pagebreak /]. Just put it on its own line inside of tag symbols in the code at the beginning of each new chapter.</p>
<p>Now for some basic paragraph formatting. Of course you will be putting your paragraphs in paragraph tags, [p] paragraph text goes here [/p]. You can put in basic paragraph attributes into the opening paragraph tag, the most commonly used one is the align attribute. Simple to use, it goes like this:</p>
<p>[p align="left"] for left alignment,</p>
<p>[p align="center"] for center alignment</p>
<p>[p align="right"] for right alignment</p>
<p>Another attribute is align=&#8221;justify&#8221; to force full justification, but eBooks fully justify by default so you can ignore this one.</p>
<p>The paragraph tag will leave a blank line between paragraphs, if you want your paragraphs to be continuous without blank lines then use a break tag instead, [br /]. Put one of these at the end of each paragraph break in your text and then begin the next line (no opening paragraph tag). To put a space between paragraphs use multiple break tags.</p>
<p>When you bump paragraphs together like this you will need a larger indent on the first line to easily spot the beginning of each paragraph, you can create the indent by using non-breaking spaces, here is the code &#8220;&amp;&#8221; followed by &#8220;nbsp&#8221;, you can put as many as you need, each one is a single space. I have found that 5-9 of these at the beginning of a paragraph gives a nice looking indent. You can use spacing attributes in the opening paragraph tag for indenting the first line, but it is not as reliable as the non-breaking space, so I stick with that in most cases.</p>
<p>You can indent the text on the left and right by using Block Quotes, basically adding margins to the page. Be aware though that on the earlier Black &amp; White Kindles the right margin may be ignored.</p>
<p>[blockquote] text [/blockquote]</p>
<p>You can put several paragraphs between one set of block quotes, and you can double up or triple up on the blockquotes to add larger margins, useful for poems and such.</p>
<p>Put in Bold and Italics as needed using standard tags, b for bold and i for italics</p>
<p>You can also use the different H tags for sizing your text, although I have found that only the larger H tag numbers work reliably. [h1] title text [/h1], [h2] not as large [/h2], etc. The H tags go from 1 to 6 but I have found that only h1 through h3 work reliably on all devices. So these are good for titles, page headings, and such.</p>
<p>Use H tags to size title and other large text like this:</p>
<p>[h1] title of eBook [/h1]</p>
<p>[h2] subtitle of eBook [/h2]</p>
<p>[h2] chapter titles [/h2]</p>
<p>You can put in alignment attributes into H tags, like this: [h1 align="center"].</p>
<p>Next position and format your images. I recommend sticking with left, right, or center alignment and keep your images on the smaller size. If the image is too large it will be resized by the eBook reader to fit the page and you will have one big image with no text. This is one spot where you may want to do some testing to get just the right size depending on your needs.</p>
<p>Once the basic formatting is in place you can set up the Table of Contents. Use anchor tags to create links for a Table of Contents. If you do this right after the title page and name it Table of Contents Kindle will know what it is and use this list for the Kindle TOC at the end of the book.</p>
<p>An Anchor tag looks like this: [a name="11" id="11"] (inside of tag symbols of course)</p>
<p>Place this at the top of each chapter, after the page break tag we included previously. You can name the anchor tags anything you want, but I find it easy to just number them. The example above is for chapter 11.</p>
<p>Now go up to your Table of Contents page and use standard links on that text to link back to your anchor tags. Here is how the link for chapter 11 looks in the TOC.</p>
<p>[a href="#11"] Chapter 11[/a] (again with the correct tag symbols surrounding the tag)</p>
<p>You can name your chapter anchor tags anything you like, maybe you have a collection of short stories and your Table of Contents lists the story titles instead of chapters, this is fine. But if you use the word Chapter in the Table of Contents Kindle will ignore any other links on that page when making the Kindle Table of Contents (in the Kindle controls and at the end of the eBook). So if you have this:</p>
<p>Forward</p>
<p>Chapter 1</p>
<p>Chapter 2</p>
<p>Epilogue</p>
<p>The Kindle will only use:</p>
<p>Chapter 1</p>
<p>Chapter 2</p>
<p>In your eBook&#8217;s Table of Contents, of course your TOC with all of your anchor tags will work correctly, but if someone uses the TOC control in Kindle they will not see the Forward or Epilogue links in this example. This does not happen if you don&#8217;t use the word Chapter. I am not sure why this is so and I discovered this by accident, but after a lot of testing it seems to be consistent. So either use all Chapters (chapter 1 &#8211; Forward, chapter 2, chapter 3, chapter 4 &#8211; Epilogue) or don&#8217;t use the word Chapter in the TOC.</p>
<p>You can use standard links in the text and at the end of the book for links to web pages, etc. These will work fine, but to be safe keep any external links off of the Table of Contents page. If you want a list of links at the front of the book put them on their own page after the TOC.</p>
<p>One more tip on designing your book, make sure you have a good Forward or First Chapter. Amazon previews the first 10% of the book in their Look Inside tool in their Kindle Store, so you want the first 10% to grab the attention of the reader so that they will buy your book. Don&#8217;t fill the front of the book with advertising, save that for the end, and don&#8217;t put a bunch of pictures at the front of the book as well. Make sure you have some quality text in the first 10% to maximize your exposure and sales.</p>
<p>This will take care of almost all of your formatting needs and make your book easily convertible to both the Kindle and Nook platforms. You can get a lot fancier if you need to, but this really is most of the formatting that most books use.</p>
<p>You should do a lot of testing to make sure that your formatting works, I recommend using a program named Calibre to convert your HTML to the MOBI format for the Kindle and the ePUB format for use on the Nook. You should use either the computer version of the Kindle Reader and the Nook Reader to check the formatting after conversion, or better still use an actual Kindle or Nook. Don&#8217;t rely on the Reader in Calibre as it is not accurate. One more tip, I have found that if I need to change or fix the formatting I need to remove the eBook from the Kindle Reader and also remove the eBook from Calibre, then re-import the fixed HTML back into Calibre, re-convert to MOBI or ePUB, and re-install in the Reader, otherwise I have found that the changes don&#8217;t always take.</p>
<p>George Peirson is a successful Entrepreneur and Internet Trainer. He is the author of over 60 multimedia based tutorial training titles covering such topics as Photoshop, Flash and Dreamweaver. To see his training sets visit <a href="http://www.howtogurus.com" target="_new">http://www.howtogurus.com</a> Article copyright 2012 George Peirson</p>
<p>Article Source: <a href="http://ezinearticles.com/?expert=George_Peirson" target="_new">http://EzineArticles.com/?expert=George_Peirson</a><br />
<a href="http://ezinearticles.com/?Formatting-Secrets-for-Kindle-and-Nook-EBooks&amp;id=6899058" target="_new">http://EzineArticles.com/?Formatting-Secrets-for-Kindle-and-Nook-EBooks&amp;id=6899058</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=28a5222f-977d-418b-ac51-7c53749612f0" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2012/254/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there really gender discrimination in business?</title>
		<link>http://commonsensemarketer.com/2012/is-there-really-gender-discrimination-in-business/</link>
		<comments>http://commonsensemarketer.com/2012/is-there-really-gender-discrimination-in-business/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:38:03 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=210</guid>
		<description><![CDATA[<p>In a private Facebook group, I noticed a lot of people were looking for a tech person to work with. So, I introduced myself. Upon returning to check on the status, I saw a post at the very top of the wall from a guy who also introduced himself as a coder.</p> <p>Now, I&#8217;m not [...]]]></description>
			<content:encoded><![CDATA[<p>In a private Facebook group, I noticed a lot of people were looking for a tech person to work with. So, I introduced myself. Upon returning to check on the status, I saw a post at the very top of the wall from a guy who also introduced himself as a coder.</p>
<p>Now, I&#8217;m not <em>that</em> naive to think I am the only geek in a group. There are probably many people better at tech than me in any group. What gave me pause was, why this guy&#8217;s introduction got so many responses when mine hardly went noticed.</p>
<p>A horrifying thought flashed through my mind. It couldn&#8217;t be true. Did he get more attention because he&#8217;s… a man? Maybe you have experienced something similar. Something that made you stop to wonder if you didn&#8217;t win the bid, secure that client or get that exposure because you are a woman. Then, you look around and it looks like all the top dogs are men.<span id="more-210"></span></p>
<div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:Louvre_glass.jpg"><img class="zemanta-img-inserted zemanta-img-configured" title="English: Glass ceiling the Louvre. Français : ..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Louvre_glass.jpg/300px-Louvre_glass.jpg" alt="English: Glass ceiling the Louvre. Français : ..." width="300" height="399" /></a><p class="wp-caption-text">Image via Wikipedia The Glass Ceiling</p></div>
<p>Of course it depends on the industry you are in but I&#8217;m here to tell you, even in seemingly male-centric arenas, there are plenty of women quietly making serious coin. Sometimes, we aren&#8217;t seeing the ladies because women simply aren&#8217;t vocal about their successes. And, when we toot our own horn, we often express it in an entirely different manner.</p>
<p>For us, being able to support our families and being there when the kids get off the bus mean a whole lot more than &#8216;crushing it&#8217; or making a million dollars in 24 hours. I&#8217;m not saying women don&#8217;t strive for that. I&#8217;d love to make that kind of money any day. It&#8217;s just, our goals are often more immediate and realistic.</p>
<p>That is why it&#8217;s always refreshing to hear stories about real women and how they broke through the barriers. If you need a little inspiration from authentic women just like you, head on over to <a href="http://solomasterminds.com">SoloMasterminds</a>. They are bragging on three ladies who turned their wildest dreams into reality while juggling homework, laundry, whiny children, soccer practices and meal plans.</p>
<p>As for that little incident I told you about earlier, after giving it more thought, I decided it had <span style="text-decoration: underline;">nothing</span> to do with gender nor discrimination of any kind. There were <strong>plenty</strong> of logical and probably more accurate explanations like the timing of our posts and how quickly my post got buried under a flurry of activity.</p>
<p>What I learned that week &#8211; focus on being awesome instead of speculating about something that may not be true because when working for yourself, there is no glass ceiling. Especially with an Internet business. Don&#8217;t take my word for it. <a href="http://solomasterminds.com">Check out the three case studies</a> and let those women tell you their story.</p>
<p>&#8212; BIO &#8212;<br />
Lynette Chandler helps small businesses leverage technology in their marketing. She is also the resident tech expert at <a href="http://solomasterminds.com">SoloMasterminds</a> and credits it for helping to turn her business around. Lynette would love to connect with you in this special community and invites you to come check it out.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://jenniferhanford.wordpress.com/2011/10/20/when-will-gender-bias-ever-end/">When Will Gender Bias Ever End?</a> (jenniferhanford.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://kractivist.wordpress.com/2012/01/17/forced-sterlisation-in-sweden-campaign-i/">Forced Sterlisation in Sweden &#8211; Campaign</a> (kractivist.wordpress.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=8ef34b90-6d94-42fa-88b6-1fe48d9e9b4e" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2012/is-there-really-gender-discrimination-in-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frustrated With Graphics Software Programs? Help is Here!</title>
		<link>http://commonsensemarketer.com/2012/frustrated-with-graphics-software-programs-help-is-here/</link>
		<comments>http://commonsensemarketer.com/2012/frustrated-with-graphics-software-programs-help-is-here/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 21:26:46 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=200</guid>
		<description><![CDATA[If you have designed websites or produced digital products for online sale, you have more than likely had the need to procure or produce graphics for use on your website, in your sales letters, or in as part of your digital product. There are many ways to obtain the graphics you need, and most involve [...]]]></description>
			<content:encoded><![CDATA[<h4>If you have designed websites or produced digital products for online sale, you have more than likely had the need to procure or produce graphics for use on your website, in your sales letters, or in as part of your digital product.</h4>
<h2>There are many ways to obtain the graphics you need, and most involve spending money.</h2>
<ul>
<li>
<h3>You can outsource production to graphics designers.</h3>
</li>
<ul>
<li>You may not get exactly what you want.</li>
<li>To get quality you will have to pay more.<span id="more-200"></span></li>
</ul>
<li>
<h3>You Can use PLR graphics.</h3>
</li>
<ul>
<li>Again you may not find exactly what you want.</li>
<li>You may have to use a graphics software program to modify and change your graphic.</li>
</ul>
<li>
<h3>If you have a high end graphics program, and can use it well, you can produce your own.</h3>
</li>
<ul>
<li>High end graphics programs cost between $200 to $700 dollars.</li>
<li>Most while being very good, are also very complicated to learn how to use.</li>
<li>You may have to continually upgrade to keep up with added features.</li>
</ul>
<li>
<h3>You could use a high end &#8216;open source&#8217; graphics software program. The 2 top rated programs in this group are free to download and use, they are upgraded and improved constantly still at no charge. The only proviso is that they are , like their commercial counterparts, complicated programs to learn and master. Once you do learn to use them you can do anything you could do with the expensive commercial programs. <em>I use these programs almost daily.</em></h3>
</li>
<ul>
<li>
<h3>First is Paint.net, available free at <a href="http://www.getpaint.net">http://www.getpaint.net/</a> You will want to check for the availability of plugins for many features and be sure the download and add the ones you need. Many online tutorials are available from YouTube and other sources.</h3>
</li>
<li>
<h3>Next is Gimp, strange name, but a very powerful and capable program. Available free at <a href="http://www.gimp.org">http://www.gimp.org/</a>. This program also utilizes plugins to add special features and many online tutorials are also available.</h3>
</li>
<ul>
<li>
<h3>There is also a package of 35 very well done videos that will teach you also any function you will need including banners, header graphics, ebook covers, buttons, buy buttons, or almost anything else you can think of. Don&#8217;t be fooled by the<span style="color: #0000ff;"> Low</span> pricetag, this is a very well done package and available at this link <a href="http://www.jvzoo.com/c/2791/135" target="_blank">Gimp Videos</a></h3>
</li>
</ul>
</ul>
</ul>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.smashingapps.com/2012/01/05/60-high-quality-free-gimp-brush-packs.html">60+ High Quality Free GIMP Brush Packs</a> (smashingapps.com)</li>
<li class="zemanta-article-ul-li"><a href="http://ostatic.com/blog/free-tools-for-getting-started-with-the-mighty-gimp-graphics-editor">Free Tools for Getting Started with the Mighty GIMP Graphics Editor</a> (ostatic.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=b8837ac6-0140-4549-b040-43528ee1c457" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2012/frustrated-with-graphics-software-programs-help-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Does how You Answer the Telephone Have to do With Marketing?</title>
		<link>http://commonsensemarketer.com/2009/what-does-how-you-answer-the-telephone-have-to-do-with-marketing/</link>
		<comments>http://commonsensemarketer.com/2009/what-does-how-you-answer-the-telephone-have-to-do-with-marketing/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:13:23 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Customer Aquisition & Retention]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=146</guid>
		<description><![CDATA[<p>By: Jim Newell</p> <p>Have you ever called a business that you were unfamiliar with, and the person who answered sounded less than eager to help you with the information you were looking for? Did they sound too busy to help you, or under too much stress?</p> <p>Maybe they answered with just one word that described [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p>Have you ever called a business that you were unfamiliar with, and the person who answered sounded less than eager to help you with the information you were looking for? Did they sound too busy to help you, or under too much stress?</p>
<p>Maybe they answered with just one word that described their type of business, with no greeting, something like &#8220;garage&#8221;, &#8220;locksmith&#8221;,  or &#8220;plumber&#8221;, leaving you a little confused as to who you actually called. Unless you are in a very small town, there may be more than one of that type of business in the area.</p>
<p><span id="more-146"></span></p>
<p>Many times the first contact a new prospect has with a business is a telephone call. This is especially true for &#8220;brick &#038; mortar&#8221; businesses. It is therefore of paramount importance that this contact be positive for the caller.<br />
That telephone call will usually be from someone who is totally unfamiliar with the exact products and services your business provides. They most likely need information. If they receive the information they need quickly, and in a friendly manner, they may very well make the jump from prospect to customer.</p>
<p>The first contact a prospect makes with any business sets in their mind an unconscious picture of how that business responds. If that contact was positive, great.  However if it was negative, that prospect may be lost forever.<br />
I have presented sales and marketing classes and seminars to many industry trade groups. I use as an example one of my customers who always answers their phone in a way that you can feel their enthusiasm to help you, it makes no difference who answers, because they all use the same enthusiastic greeting and you can “feel” the smile. I have even given out their phone number, so attendees could hear a good example.</p>
<p>So how do you convince your employees to answer the phone with enthusiasm? You should start with a short training program for all people who answer the phone.</p>
<p>      •	You need to let your employees know how big a part of how they answer the phone is to customer acquisition.<br />
      •	Have them help you develop a script that everyone will use. They will feel a sense of ownership.<br />
      •	Put a mirror at each phone station, so the person answering can see their smile. People on the other end of the phone<br />
        can “feel” that smile.<br />
      •	It is very important that you monitor how the phone is being answered, if a particular person cannot learn and use the<br />
        script, they should be reassigned so they are not responsible for answering the phone.<br />
      •	All persons answering the phone, including the business owner, senior managers, whoever must use the same script and<br />
        enthusiasm.</p>
<p>In closing, remember any contact with a prospect or existing customer needs to be treated as an opportunity to gain a new customer or help the existing customer decide to buy more products or services from you. In other words all prospect or customer contacts are part of marketing.</p>
<p><a target="_blank" href="http://www.shareasale.com/r.cfm?b=130634&#038;u=340156&#038;m=17824&#038;urllink=&#038;afftrack="><img src="http://www.shareasale.com/image/TPOT_468_60.jpg"  border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/what-does-how-you-answer-the-telephone-have-to-do-with-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto responders, A Powerful Marketing AutomationTool for All Businesses!</title>
		<link>http://commonsensemarketer.com/2009/auto-responders-a-powerful-marketing-automationtool-for-all-businesses/</link>
		<comments>http://commonsensemarketer.com/2009/auto-responders-a-powerful-marketing-automationtool-for-all-businesses/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:35:29 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Customer Aquisition & Retention]]></category>
		<category><![CDATA[Relationship Marketing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=121</guid>
		<description><![CDATA[<p>By: Jim Newell</p> <p>One of the more powerful marketing automation tools for online marketers is the auto responder. Many &#8220;brick &#038; mortar&#8221; business people are not aware of this amazing tool, however it is just as useful and powerful for them as well.</p> <p>Read that first sentence again slowly&#8230;did you see &#8220;powerful marketing automation&#8221;, think [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p>One of the more powerful marketing automation tools for online marketers is the auto responder. Many &#8220;brick &#038; mortar&#8221; business people are not aware of this amazing tool, however it is just as useful and powerful for them as well.</p>
<p>Read that first sentence again slowly&#8230;did you see &#8220;powerful marketing automation&#8221;, think about that for a moment, what could it mean for your &#8220;brick &#038; mortar&#8221; business? Automation of repetitive tasks is one of the keys to running a successful business, either online or &#8220;brick &#038; mortar&#8221;, especially when you have a small staff.</p>
<p><span id="more-121"></span></p>
<p>Auto responders first came into use as a way of alerting e-mailers that their message bounced, or did not get sent. Have you ever sent an email message to someone and got an immediate reply that they are on vacation?  Those messages are sent by a basic auto responder system included in their email system.</p>
<p>As people saw how useful these auto responses were, and how quickly they were delivered, it just became natural that they be adapted to marketing. What is somewhat amazing however is how few businesses make full use of this automated and and very useful message delivery system. If you are reading this article in the one of my newsletters, that newsletter was sent to you via an auto responder, which points out another great attribute of this great tool, that being the ability to deliver specific communications on a predetermined schedule.</p>
<p>The real power of an auto responder is the users ability to preload the communications you want to send, and when you want them sent, ie; message number 1 could be sent immediately, then number 2 a few days later. number 3 two weeks after number 2 and so on.</p>
<p>When your subscriber signs up for your list, or when you enter them on your list the schedule stars, so that no matter when someone starts on your list they receive the same messages as everyone else and on the same schedule. You would also have the ability to send a special message to all subscribers at any time, without changing the original schedule. Some auto responder users have their communications scheduled a year or 2 into the future, kind of a set it and forget it procedure.</p>
<p>This is all part of the making money while you sleep magic that you hear about, you are marketing to your subscribers on auto pilot, all of the time, are you beginning so see the possibilities?</p>
<p>There are 3 basic ways to set up auto responders, the amount of work done by you and the amount done by the auto responder varies quite a bit depending on which method you choose.</p>
<ul>
<li><strong>Auto responder software on your site &#8211; a lot of work for you </strong>
<ul>
<li><strong>Pros</strong>
<ul>
<li>Open source software available, no cost</li>
<li>No monthly charges</li>
</ul>
</li>
<li><strong>Cons</strong>
<ul>
<li>You handle subscriptions</li>
<li>You set up messages and schedules</li>
<li>You email messages as per schedule</li>
<li>You handle subscription cancellations</li>
</ul>
</li>
</ul>
</li>
<li><strong>Auto Responder Service &#8211; some work for you</strong>
<ul>
<li><strong>Pros</strong>
<ul>
<li>They take care of subscriptions and cancellations</li>
<li>They send all emails, on your schedule</li>
<li>Easy set up of messages and schedule</li>
<li>Most guarantee all subscribers are double opt-in subscribers</li>
</ul>
</li>
<li><strong>Cons</strong>
<ul>
<li>Charge a moderate monthly fee to manage</li>
</ul>
</li>
</ul>
</li>
<li><strong>Full service email marketing management services</strong>
<ul>
<li><strong>Pros</strong>
<ul>
<li>More than just auto responders, they handle all of your email marketing</li>
</ul>
</li>
<li><strong>Cons</strong>
<ul>
<li>Can be expensive</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>In my experience, most auto responder software loaded on your site, is to much work. It is very easy to get busy and forget to email messages on time, add subscribers to your list, remove cancellations from your list, not insure that all subscribers are double opt-in, etc.</p>
<p>Auto responder services offer excellent management of your list or multiple lists, they handle the double opt-in procedure, they all have tutorials to get you up and running quickly. Once you get your campaigns are up and running, they run on autopilot, occasional changes or tweaks are easy to make. My service costs me less than $20 per month and is worth every penny.</p>
<p>Full service email management services are well suited to larger businesses, do a fantastic job of handling all of your email issues, however cost can be higher.</p>
<p>Whichever method you choose remember than communicating with your prospects and customers on a regular basis is one of the best ways to increase customer retention and one of the easiest ways to add sales.</p>
<p style="text-align: center;">I recommend <a href="http://www.aweber.com/?208736" target="_blank"><strong>Aweber</strong></a>, for your Auto responder needs</p>
<p style="text-align: center;"> <a title="Email Marketing" href="http://aweber.com/?208736"></p>
<p><img style="border:none;" src="http://www.aweber.com/banners/email_marketing/468x60_an.gif" alt="Email Marketing $19/Month!" /></a></p>
<p> You have gone to the effort to attract subscribers, if taken care of and offered information and the occasional product, these folks will stick with you and even be profitable. That said some people do very well with this method.</p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/auto-responders-a-powerful-marketing-automationtool-for-all-businesses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Attract Targeted, Organic Traffic to Your Website or Blog with no Added Cost</title>
		<link>http://commonsensemarketer.com/2009/how-to-attract-targeted-organic-traffic-to-your-website-or-blog-with-no-added-cost/</link>
		<comments>http://commonsensemarketer.com/2009/how-to-attract-targeted-organic-traffic-to-your-website-or-blog-with-no-added-cost/#comments</comments>
		<pubDate>Sun, 31 May 2009 13:40:15 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Customer Aquisition & Retention]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=117</guid>
		<description><![CDATA[<p>By: Jim Newell</p> <p>When building your marketing list do you consider what motivates a subscriber to sign up?</p> <p>One of the biggest motivations is the hope that they are going to get information on something that interests them, or will solve a problem they are experiencing.</p> <p>The marketing methods you are using, and how effectively you [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p>When building your marketing list do you consider what motivates a subscriber to sign up?</p>
<p>One of the biggest motivations is the hope that they are going to get information on something that interests them, or will solve a problem they are experiencing.</p>
<p>The marketing methods you are using, and how effectively you are using them dictate in large part how well targeted the group of prospects you are trying to entice will be. Popular methods of trying to attract subscribers, or buyers, include;</p>
<ul><span id="more-117"></span></p>
<li>Pay Per Click advertising, also known as PPC. The main attribute of PPC advertising is that if not done correctly, and constantly monitored, these campaigns can become quite costly. They can however be very targeted.</li>
<li>Article Marketing is the activity of writing and distributing original article that you write or have written, with the express purpose of attracting readers and enticing them to become subscribers or customers. Well written, keyword optimized articles can be very targeted. Article Marketing can be very effective, and if you do you own writing and distributing, very low cost.</li>
</ul>
<p>Search Engine Optimization, or SEO, is a way to dramatically improve the overall effectiveness of both of the above online marketing methods, and do it with no added cost. What could be better, supercharge your efforts be being sure your PPC, and Article Marketing campaigns are optimized, just by using a few techniques that should have been used anyway.</p>
<p>Whether you have a website, a blog, or just write articles, Using basic SEO techniques in large part determines how easily your site or acticles are found, and thus how well they are ranked by the search engines. The good news for the astute online marketer is that a very large percentage of websites, blogs and article are not optimized at all, or at best very poorly, this gives a decided advantage to those who will take the time to learn and use these simple techniques.</p>
<ul>
<li>&lt;TITLE&gt; tag &#8211; A relevant title tag, included in the &lt;HEAD&gt; section of your page will do more to improve page rank than just meta tags. The title tag should contain your main keywords, and may or may not read like or even resemble the title of your article or page. Title tags must be closed.</li>
<li>Meta tags &#8211; Meta tags are not by themselves the &#8220;magic bullet&#8221; to page rank, they are however overlooked by a very large percentage of web publishers. They really just help search engines find information about you page, article and site. The most important Meta Tags for search engine standing are the description and the keyword tags, and are also the most misused.
<ul>
<li>The description tag describes what your page is about, search engines will use part of your description tag in listings for keyword searches. Your description needs to be enclosed in quotes, and should contain your main keywords.</li>
<li>The keywords tag should contain very targeted, keywords, most search engines only allow a limited number of keywords, be sure yours are the most relevant to the page content.</li>
</ul>
</li>
<li>There are more meta tags that are useful, do a search on &#8220;meta tags&#8221; for extensive information.</li>
</ul>
<p>There are many more ways to optimize your pages, some of which will be covered in subsequent articles on this site. For more immediate extensive information and access to a product that can automate your SEO efforts, check out the premier SEO tool at this link <a href="http://a8db5b22z7z7g-iwwq33yt3mbc.hop.clickbank.net/?tid=CSM603" target="_top"><strong><span style="color: #3366ff;">Click Here!</span></strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/how-to-attract-targeted-organic-traffic-to-your-website-or-blog-with-no-added-cost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Online Marketers List is His/Her Most Valuable Asset, How You Grow it Dictates How Much it Costs!</title>
		<link>http://commonsensemarketer.com/2009/the-online-marketers-list-is-hisher-most-valuable-asset-how-you-grow-it-dictates-how-much-it-costs/</link>
		<comments>http://commonsensemarketer.com/2009/the-online-marketers-list-is-hisher-most-valuable-asset-how-you-grow-it-dictates-how-much-it-costs/#comments</comments>
		<pubDate>Tue, 26 May 2009 12:07:29 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Customer Aquisition & Retention]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Relationship Marketing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=111</guid>
		<description><![CDATA[<p>By: Jim Newell</p> <p>You hear it everywhere on the Internet, the money is in your list. It seems that every other online marketing guru sells a program for building your list. Most of them lead you to some PPC scheme, this of course will cost money, in some cases a lot of money.</p> <p>If you [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p>You hear it everywhere on the Internet, the money is in your list. It seems that every other online marketing guru sells a program for building your list. Most of them lead you to some PPC scheme, this of course will cost money, in some cases a lot of money.</p>
<p>If you agree that the money is in the list, and that you do not want to spend huge amounts of money to build it, where do you turn?</p>
<p><span id="more-111"></span></p>
<p>Would you be interested if I told you that all you really need is a computer and a take charge attitude? You can be collecting email addresses for your own list within 48 hours. And you can do it without spending your money on paid traffic sources!</p>
<p>If having an online business is your goal, finding new customers every day, without having your own list of opt-in prospects is a lot of hard work and near impossible.</p>
<p>When you have and cultivate your own list you have a ready audience for each offer you create, each newsletter you send out, each blog post you make. Each of these items is being sent to someone who asked to be on your list, you already know they are interested in the subject matter on your blog, newsletter, or the products you promote. This kind of &#8220;targeted&#8221; traffic is priceless to the online marketer.</p>
<p>Once you start building your own list you can even begin to automate your contacts with them by using an auto responder program, once you have the messages you want to send entered and scheduled, folks who subscribe to your list, or lists will begin receiving your messages on your schedule.</p>
<p>You can start building your list on your own with an opt-in subscription form on your website or blog, with social marketing, article marketing or any of a dozen or so more methods. This will work, however without someone to guide you, someone who has already been through the &#8220;try &amp; fail&#8221; gauntlet, who has perfected the methods that really work, you could be wasting valuable time and money.</p>
<p>Let me introduce you to Carrie Wilkerson, The Barefoot Executive. Carrie has &#8220;been there done that&#8221; with list buiding, she has developed a fantastic list building training program that will have you up and running with building your list very quickly.</p>
<p>Here is the program description directly from Carrie, check it out, if this would work for you, take action now! <a href="http://e24a6fu907uifxfgm6--uhhsa3.hop.clickbank.net/?tid=CSM602" target="_top"><strong><span style="color: #3366ff;">Click Here!</span></strong></a></p>
<p style="text-align: center;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/the-online-marketers-list-is-hisher-most-valuable-asset-how-you-grow-it-dictates-how-much-it-costs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Approaches to Customer Acquisition, Which will the CommonSenseMarketer use?</title>
		<link>http://commonsensemarketer.com/2009/3-approaches-to-customer-acquisition-which-will-the-commonsensemarketer-use/</link>
		<comments>http://commonsensemarketer.com/2009/3-approaches-to-customer-acquisition-which-will-the-commonsensemarketer-use/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 00:56:01 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA[Customer Aquisition & Retention]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=102</guid>
		<description><![CDATA[I’ve always been impressed with businesses that can start up in an already crowded niche, and grow very rapidly. I’ve seen many examples of this, is it just luck, or is how they go after the customer? Businesses have different ways of attracting new customers and interacting with their existing customers. It may possibly be safe to say that no two businesses use exactly the same methods; however all use some combination of 3 basic approaches to acquiring customers or prospects. [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p><span style="color: #000080;">I&#8217;ve always been impressed with businesses that can start up in an already crowded niche, and grow very rapidly. I&#8217;ve seen many examples of this, is it just luck, or is how they go after the customer? Businesses have different ways of attracting new customers and interacting with their existing customers. It may possibly be safe to say that no two businesses use exactly the same methods; however all use some combination of 3 basic approaches to acquiring customers or prospects.</span></p>
<p><span id="more-102"></span></p>
<p><span style="color: #000080;"><!--more--></span></p>
<p><span style="color: #000080;">These 3 approaches to new customer acquisition are;</span></p>
<p style="padding-left: 30px;"><span style="color: #000080;">1) Passive &#8211; Some businesses are completely passive, waiting for the phone to ring or some other way of letting customers, both new and repeat find them. These businesses are taking a reactive approach to customer acquisition and retention. </span></p>
<p style="padding-left: 30px;"><span style="color: #000080;">2) Active &#8211; More successful businesses will engage in advertising, promotions and other forms of letting potential customers know what services they offer. These businesses are taking an active approach, and are by far with the vast majority. </span></p>
<p style="padding-left: 30px;"><span style="color: #000080;">3) Pro-Active &#8211; These are the businesses who if they do not find conditions that exist already to make them grow, they create their own. The superstars take a pro-active approach, they look for things they can change or markets they can create to attract new business. </span></p>
<p><span style="color: #000080;">Here is a mythical example. A balloon manufacturer decides to start a new plant in a medium size mid-America city. While researching where to locate he decides to build his plant in the inner city area. He opens and sends his sales people out to flower shops, gift card shops, local restaurants etc., anyplace that might sell, or benefit from giving away balloons. He has some success, but knows there is more business out there. He discovers that his city has 2 annual parades that use the same route through the city and come within a few blocks of his business. He sends a few people out to the parade route to sell balloons to the gathering crowds. Again some success, he has created a new market for his balloons.  A couple of years go by and he sees that the sales along the parade routes have tapered off. He decides to petition the city to route the parades past his place of business, which they agree too. He approaches many of the other businesses along the new parade route to advertise on his balloons, and sends more of his people out along the parade routes to give the balloons, with the advertising on them, away. Huge success, he has now created a flood of business customers who benefit from his advertising balloon giveaways and expands that idea to other venues.</span></p>
<p><span style="color: #000080;">In this mythical example we see all 3 approaches, some businesses will progress through all 3, others will just start with the pro-active mindset. Any bets on which will become the super-stars? The CommonSenseMarketer will naturally start with the pro-active mindset.</span></p>
<ul>
<li><span style="color: #000080;"> Passive &#8211; If our balloon manufacturer had taken this approach he may not have survived his first year.</span></li>
<li><span style="color: #000080;">Active &#8211; Back to our balloon entrepreneur, he recognized that the parades were drawing crowds of prospective customers into the inner city area and just put his balloons among them.</span></li>
<li><span style="color: #000080;">Pro-Active &#8211; Our start up balloon manufacturer got the city to change the parade route bringing more exposure to his business, he approached the other businesses along the new parade route with a novel way of increasing their exposure. </span></li>
</ul>
<p><span style="color: #000080;">It does not matter if you are an online marketer or a &#8220;brick &amp; mortar&#8221; entrepreneur, the methods for employing these strategies are different, however they still follow the same 3 basic approaches.</span></p>
<p style="text-align: center;"><a href="http://www.shareasale.com/r.cfm?b=148818&amp;u=340156&amp;m=17824&amp;urllink=&amp;afftrack="><span style="color: #3366ff;">212</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/3-approaches-to-customer-acquisition-which-will-the-commonsensemarketer-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Top Online Marketing Tools&#8230;&#8221;Brick &amp; Mortar&#8221; Marketers Should Be Using</title>
		<link>http://commonsensemarketer.com/2009/4-top-online-marketing-toolsbrick-mortar-marketers-should-be-using/</link>
		<comments>http://commonsensemarketer.com/2009/4-top-online-marketing-toolsbrick-mortar-marketers-should-be-using/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:50:51 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA["Brick & Mortar"]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=92</guid>
		<description><![CDATA[There's an old saying that goes like this, "necessity is the mother of invention", perhaps you've heard it. Let's look at an example of it being used. Online marketing of products or information was in its infancy 10 years ago, and it had a huge disadvantage to overcome. How to attract, hold and sell to a market that you never met and your only tool was a computer screen. [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p><span style="color: #000080;">There&#8217;s an old saying that goes like this, &#8220;necessity is the mother of invention&#8221;, perhaps you&#8217;ve heard it. Let&#8217;s look at an example of it being used. Online marketing of products or information was in its infancy 10 years ago, and it had a huge disadvantage to overcome. How to attract, hold and sell to a market that you never met and your only tool was a computer screen. Take a look at online marketing today, how have they done? Actually very well, the tools that have evolved are very effective, they can be quite useful and cost effective for &#8220;brick&amp; mortar&#8221; businesses as well.<span id="more-92"></span></span></p>
<ol>
<li><span style="color: #000080;"> <strong>Website</strong> &#8211; Try to imagine an advertising platform that can be changed and/or updated any time you want.  Your company website can be changed or added to any time you want and at very little or even no cost. Your website can be used to provide information to your existing customer base, as well as new customers. Things such as store hours, maps, specials or even an e-newsletter subscription form. Directing people to your website may even save some phone time. </span></li>
<li><span style="color: #000080;"><strong>Blog</strong> &#8211; Is a blog the same thing as a website, well it could be, however the typical blog platform is really good as a content management and reader communication platform. If your customers have questions about your services or products they can post their questions online. Some Blog platforms are easy to update, which makes them ideal for a small website.</span></li>
<li><span style="color: #000080;"><strong>eMail</strong> &#8211; email marketing is the main tool online marketers use to keep in contact with their customers. Why would a &#8220;brick &amp; mortar&#8221; business want to use email marketing? <strong>Think direct mail at no cost! Think putting your message directly on your customers/prospects computer!</strong> The only costs associated with email marketing, if done on a smaller scale are possible costs to prepare your message. Your email lists can usually be managed with your basic email program. For larger scale email marketing campaigns there are services available that will do everything except gather the email address. If you are a &#8220;brick &amp; mortar&#8221; business owner, you should be asking every customer you come in contact with for their email address. To stay in compliance with &#8220;anti-spam&#8221; legislation be sure to ask permission to email them and have them sign a form authorizing the same. Most people will give you their email address, if you assure them that you will not give it to anyone else, and if you tell them what you are going to send them and how often.</span></li>
<li><span style="color: #000080;"><strong>Auto-responder</strong> &#8211; Automation of your email marketing messages or newsletters makes your campaign more consistent and much easier to manage. So what does an auto-responder do? It sends your pre entered messages to all of your customers on the schedule you set up. Imagine you send a monthly newsletter, you can write as many issues as you need, enter them into your auto-responder and they will be mailed automatically as scheduled. You can email a special message to all of your list members any time between scheduled messages, without upsetting your schedule. Auto-responder software can be had at no cost and can be installed on your computer, or for time savings you can use an auto-responder service, usually for a monthly charge.</span></li>
</ol>
<p><span style="color: #000080;">Check this website for a example of an customer information site, </span><a href="http://www.secureyourstuff.com/"><span style="color: #000080;">http://www.SecureYourStuff.com</span></a><span style="color: #000080;">, just copy and paste the url into your browser address bar. </span></p>
<p style="text-align: center;"><a href="http://www.shareasale.com/r.cfm?b=148752&amp;u=340156&amp;m=17824&amp;urllink=&amp;afftrack="><span style="color: #3366ff;">Finish Strong</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/4-top-online-marketing-toolsbrick-mortar-marketers-should-be-using/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Ways to apply the Pareto Principle in Common Sense Marketing</title>
		<link>http://commonsensemarketer.com/2009/5-ways-to-apply-the-pareto-principle-in-common-sense-marketing/</link>
		<comments>http://commonsensemarketer.com/2009/5-ways-to-apply-the-pareto-principle-in-common-sense-marketing/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 11:17:08 +0000</pubDate>
		<dc:creator>Jim Newell</dc:creator>
				<category><![CDATA["Brick & Mortar"]]></category>
		<category><![CDATA[Relationship Marketing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://commonsensemarketer.com/?p=88</guid>
		<description><![CDATA[<p>By: Jim Newell</p> <p>There has to be a reason that some part of a business does better than other parts, why some employees are more productive than others, why some sports team dominate their sports etc. There really is a logical explanation, and once you understand what it is and how it works, your business [...]]]></description>
			<content:encoded><![CDATA[<p>By: Jim Newell</p>
<p>There has to be a reason that some part of a business does better than other parts, why some employees are more productive than others, why some sports team dominate their sports etc. There really is a logical explanation, and once you understand what it is and how it works, your business in fact your life will never be the same. <span id="more-88"></span></p>
<p>The Pareto Principle, or sometimes referred to as the 80-20 rule, applies to almost every facet of business operation, every management function, in fact it is applied to and holds pretty much true to almost anything in life. </p>
<p>The rule was developed from observations made in the early 1900&#8242;s by Vilfredo Pareto who had an engineering degree, was an economics lecturer and philosopher in Italy and Switzerland. His 1906 observation was that 80 percent of the property and wealth in Italy were held and controlled by only 20 percent of the population. He also observed that 20 percent of the pea pods in his garden produced 80 percent of the crop. The names Pareto Principle or 80-20 rule were not coined by Pareto but actually credited to him by noted management expert Joseph M. Juran and others who became familiar with Pareto&#8217;s work and observations and determined that they could be applied to almost any problem or procedure and seem to always work out to the 80/20 ratio. </p>
<ol>
<li>80 percent of your profits will come from 20 percent of your products or services. The key is to identify which of those products and services are in the top 20 percent. Those are the products you never want to be out of, those are the services you want to continually improve on or expand. These services and products are the ones you want to advertise the most heavily. You will want to be sure which of the remaining 80 percent of your products and services are really needed and that they support the top 20 percent. </li>
<li>80 percent of your sales will come from 20 percent of your customers. After you have identified which of those customers are in the top 20 percent, they are the ones you want to be sure are always catered to, they are always made aware of specials and new products, that they are always given to opportunity to become repeat customers. These are the ones you want to solicit testimonials from. </li>
<li>80 percent of complaints will be generated by about the same 20 percent of problems. Tracking your complaints will allow you to see and focus on the specific problems and areas that generate the most complaints. Finding those specific problems will allow you to identify and fix them. Of course you should never stop tracking complaints, because as soon as you fix one another will take its place. </li>
<li>80 percent of your successful campaigns will come from only 20 percent of your advertising. Identify your successful campaigns and duplicate or build on them. Use similar delivery methods for your message; some will work better than others with a particular audience. Knowing which methods and campaigns actually work will save o lot of money in your advertising budget. </li>
<li>20 percent of your sales force will produce 80 percent of your sales. Nurture, grow and reward that top 20 percent, they are the superstars who will make your business successful. One of the attributes you will find in this group is that they will be the self starters who will always find a way to get the business. This will allow you to put more resources into developing the other 80 percent. </li>
</ol>
<p>As stated earlier, the Pareto Principle or 80-20 rules works almost anyplace you apply it, the percentages will not always add up to 100 percent, however the ratio will be very close. The 80-20 rule works with online as well as &#8220;brick &amp; mortar&#8221; businesses. This is truly a Common Sense Marketing tool that you should make part of your decision making and evaluating arsenal.</p>
<p style="text-align: center;"><a href="http://www.shareasale.com/r.cfm?b=148827&amp;u=340156&amp;m=17824&amp;urllink=&amp;afftrack="><span style="color: #3366ff;">What It Takes to Be Number 1</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://commonsensemarketer.com/2009/5-ways-to-apply-the-pareto-principle-in-common-sense-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

