<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Promoting Group</title>
	
	<link>http://www.promotinggroup.com</link>
	<description>Internet Marketing and Web Design</description>
	<lastBuildDate>Sat, 25 Sep 2010 17:51:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/promotinggroup" /><feedburner:info uri="promotinggroup" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>promotinggroup</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Favicon Creation</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/eM0lXIioRMk/</link>
		<comments>http://www.promotinggroup.com/web/favicon-creation/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:10:22 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Branding and Identity]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[ico]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[png2ico]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=611</guid>
		<description><![CDATA[Whenever I make a site, I end up having to make a favicon. Favicons are a nice way to brand a site in the address bar (and tabs). Making favicons for &#8220;good&#8221; browsers (not IE) is easy since they accept PNG files by declaring a link statement for the image&#8230; &#60;link rel="icon" type="image/png" href="/somepath/image.png" /&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I make a site, I end up having to make a favicon. Favicons are a nice way to brand a site in the address bar (and tabs). Making favicons for &#8220;good&#8221; browsers (not IE) is easy since they accept PNG files by declaring a link statement for the image&#8230;</p>
<p><code>&lt;link rel="icon" type="image/png" href="/somepath/image.png" /&gt;</code></p>
<p>However, if you want a favicon that can be picked up by all browsers you&#8217;ll want to create an ICO file. I&#8217;ve found various online tools that will convert image files to ICO; <a rel="external" href="http://www.favicon.cc/">Favicon.cc</a> was one that I often used. The downside, all the online favicon generators I found gave me a 16&#215;16 ICO file. I wanted an ICO file with multiple sizes so if the user puts the bookmark on their desktop is uses the larger ICO size. So I decided to find a way to easily create a ICO file with multiple embedded sizes (64&#215;64, 48&#215;48, 32&#215;32, 16&#215;16) and I&#8217;ve decided to describe how I accomplished this.</p>
<p>These directions are written for Windows, but they can easily be adapted to other operating systems with minor adjustments. First you&#8217;ll need to download two tools.</p>
<ul>
<li><a rel="external" href="http://www.imagemagick.org/script/binary-releases.php#windows">ImageMagick</a> &#8211; This will be needed to automatically create the appropriate image sizes/formats</li>
<li><a rel="external" href="http://www.winterdrache.de/freeware/png2ico/">png2ico</a> &#8211; This, as the title suggests, will be needed to convert PNG images to ICO files</li>
</ul>
<p><strong>Installation</strong><br />
ImageMagick: If you downloaded one of the installers, this one is easy. Just run the installer and follow the on-screen prompts</p>
<p>png2ico: This doesn&#8217;t really need to be installed, but you need to copy <strong>png2ico.exe</strong> into your System32 folder (<strong>C:/Windows/System32</strong>) so it can be used from any directory in the command prompt</p>
<p><strong>Implementation</strong></p>
<ol>
<li>Open up your System32 (where you copied <strong>png2ico.exe</strong>) and create a file titled <strong>favicon.bat</strong></li>
<li>Open <strong>favicon.bat</strong> in a text editor (right click the file and choose <strong>Edit</strong>)</li>
<li>Enter the following into <strong>favicon.bat</strong> and then save the file<br />
<code>convert %1 -resize 64x64^ -gravity center -background transparent -extent 64x64 64.png<br />
convert %1 -resize 48x48^ -gravity center -background transparent -extent 48x48 48.png<br />
convert %1 -resize 32x32^ -gravity center -background transparent -extent 32x32 32.png<br />
convert %1 -resize 16x16^ -gravity center -background transparent -extent 16x16 16.png<br />
png2ico favicon.ico 64.png 48.png 32.png 16.png<br />
del 64.png<br />
del 48.png<br />
del 32.png<br />
del 16.png</code></li>
<li>Open the command prompt (Go to Start &gt; Run, type <strong>cmd</strong> and hit enter)</li>
<li>Navigate to the folder with your image (<strong>cd foldername</strong>) and now type <strong>favicon filename.png</strong> (replace filename.png with the filename of your image) and hit enter</li>
</ol>
<p>Now, with that little bit of setup, you can create favicons in seconds. I added a few keys to my registry to make it even easier, but I&#8217;ll save that for another time. Also, I will cover story about conversions and why it&#8217;s import to use <a href="http://www.nextiva.com">business voip</a> and track leads coming in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/web/favicon-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/web/favicon-creation/</feedburner:origLink></item>
		<item>
		<title>Free Anti-Virus Software!</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/Ugz0DsnkHQ8/</link>
		<comments>http://www.promotinggroup.com/news/free-antivirus-software/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 23:09:52 +0000</pubDate>
		<dc:creator>Susan</dc:creator>
				<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[conficker]]></category>
		<category><![CDATA[conflicker]]></category>
		<category><![CDATA[malicious software]]></category>
		<category><![CDATA[mcafee]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[norton]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=607</guid>
		<description><![CDATA[If you own a PC, we have great news for you. This week Microsoft unveiled its new anti-virus software, which offers high-quality protection against spyware, viruses, Trojan horses, worms, malicious software, and other unwanted files. It updates automatically. It upgrades automatically. And…it’s free. Anyone with a PC can now go to Microsoft’s website and download [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.promotinggroup.com"><img class="alignright size-medium wp-image-608" title="214a5af" src="http://www.promotinggroup.com/wp-content/uploads/2009/09/214a5af-117x124.jpg" alt="214a5af 117x124 Free Anti Virus Software!" width="117" height="124" /></a>If you own a PC, we have great news for you. This week Microsoft unveiled its new anti-virus software, which offers <a href="http://www.cbc.ca/technology/story/2009/09/29/tech-computer-windows-antivirus.html">high-quality protection</a> against spyware, viruses, Trojan horses, worms, malicious software, and other unwanted files. It updates automatically. It upgrades automatically. And…it’s free.</p>
<p class="MsoNormal">
<p class="MsoNormal">Anyone with a PC can now go to Microsoft’s website and download the anti-virus software free of charge. Versions are available for both Windows XP and Windows Vista, as well as for Windows 7, the new operating system that will be launched in the upcoming months.</p>
<p class="MsoNormal">
<p class="MsoNormal">Microsoft has stated that they are not releasing this software to compete with paid-for security software, such as McAfee and Norton, but rather to protect users who do not currently have security software in an attempt to avoid the spread of computer worms and viruses. The need for such security measures became apparent after the Conficker virus spread throughout the world due to improper security measures earlier this year in March of 2009.</p>
<p class="MsoNormal">
<p class="MsoNormal">To obtain your free copy of this security software, proceed to the Microsoft homepage at <a href="http://www.microsoft.com/">www.microsoft.com</a>. Then, scroll over the Security &amp; Updates toolbar box, and click on “Microsoft Security Essentials.”<span> </span>Select the “Download Now” button, and follow the instructions that pop up. Select your current location and your operating system. If you do not know which operating system your computer is running, click on the provided Microsoft Support link and following the instructions.</p>
<p class="MsoNormal">
<p class="MsoNormal">Once you are all set up, the file should download automatically. Double-click on the downloaded icon to set up and install the file. Your security updates are complete without even having to restart your computer!</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/free-antivirus-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/free-antivirus-software/</feedburner:origLink></item>
		<item>
		<title>It’s Y!ou</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/pobAL9NqCeA/</link>
		<comments>http://www.promotinggroup.com/news/its-you/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 20:26:23 +0000</pubDate>
		<dc:creator>Susan</dc:creator>
				<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[$100 million]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[headlines]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[horoscope]]></category>
		<category><![CDATA[it's y!ou]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[personalie]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[recipes]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[social media marketing]]></category>
		<category><![CDATA[sports]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[y!ou]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=603</guid>
		<description><![CDATA[Yahoo! has always been a major presence in the search-engine world, but has never lived up to its number-one rival, Google. While Google has dominated the search engine market for several years, Yahoo! has always remained second place, though a far distant one. When Yahoo! and Microsoft announced partnership earlier this year, we here at [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.yahoo.com/"><img class="alignright size-medium wp-image-604" title="yahoo_logo" src="http://www.promotinggroup.com/wp-content/uploads/2009/09/yahoo_logo-178x125.jpg" alt="yahoo logo 178x125 Its Y!ou" width="178" height="125" />Yahoo!</a> has always been a major presence in the search-engine world, but has never lived up to its number-one rival, <a href="http://www.google.com/">Google</a>. While Google has dominated the search engine market for several years, Yahoo! has always remained second place, though a far distant one.</p>
<p class="MsoNormal">
<p class="MsoNormal">When Yahoo! and <a href="http://www.microsoft.com/">Microsoft</a> announced <span style="text-decoration: underline;"><a href="../news/microsoft-yahoo-announce-deal/">partnership</a></span> earlier this year, we here at <a href="../">Promoting Group</a> were interested to see where the pair would go. Microsoft launched the <a href="http://www.bing.com/">Bing</a> search engine while keeping the Yahoo! one alive, in an attempt to move in on Google’s market dominance.</p>
<p class="MsoNormal">
<p class="MsoNormal">Now, Yahoo! will launch a $100 million <a href="http://www.forbes.com/2009/09/22/yahoo-marketing-campaign-cmo-network-yahoo.html">marketing campaign</a> to try and rebuild its status as one of the major search engine and email platforms, using Bing’s encroachment on Google as its foundation. The campaign, which is rumored to be called <a href="http://www.forbes.com/2009/09/22/yahoo-marketing-campaign-cmo-network-yahoo.html">It’s</a> <a href="http://online.wsj.com/article/BT-CO-20090922-707946.html">Y!ou</a>, will promote Yahoo!’s many features outside of the search engine area, including personalized homepages and social media networking decks. Yahoo! will maintain its search engine capabilities, so as not to lose the small slice of the market they currently claim over Google.</p>
<p class="MsoNormal">
<p class="MsoNormal">The strongest claim that Yahoo! will have over both Google and Bing is the ability to completely personalize a homepage. Registered users will be able to check email, read and update social media platforms, choose daily horoscopes, read the scores and highlights from selected sporting teams, view the day’s weather forecast, read daily headlines from their chosen city or newspaper, and even select options such as having daily recipes, travel tips, or local event announcements appear on their homepages.</p>
<p class="MsoNormal">
<p class="MsoNormal">While users customize their homepages, Yahoo! will then also be able to use their selections as a guide for targeted advertisements. The user who chooses to learn about daily recipes might see ads for cookbooks, while the user who reads the scores for several sporting teams may see ads for ticket vendors or sporting equipment. The personalization feature works for both the user and for Yahoo! in this way, helping to generate revenue and appeal to people’s desire for personalized features.</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/its-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/its-you/</feedburner:origLink></item>
		<item>
		<title>Google’s Espresso Machine</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/TDLnb5p1pSQ/</link>
		<comments>http://www.promotinggroup.com/news/googles-espresso-machine/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 20:03:30 +0000</pubDate>
		<dc:creator>Susan</dc:creator>
				<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[book download]]></category>
		<category><![CDATA[classics]]></category>
		<category><![CDATA[digital books]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google books]]></category>
		<category><![CDATA[harvard]]></category>
		<category><![CDATA[herman melville]]></category>
		<category><![CDATA[jfk library]]></category>
		<category><![CDATA[moby dick]]></category>
		<category><![CDATA[out-of-print]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[shakespeare]]></category>
		<category><![CDATA[the espresso machine]]></category>
		<category><![CDATA[widener library]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=597</guid>
		<description><![CDATA[Five years ago, Google began collecting out-of-print books from various sources to convert into digital downloads, ensuring their survival into the digital age. Some of these books are considered public domain, such as Herman Melville’s classic Moby Dick and all of Shakespeare’s works. Since these works were published before 1923, their copyrights are no longer [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.promotinggroup.com"><img class="alignleft size-medium wp-image-598" title="5c7f9bcb-fca2-4fb4-a82d-0489cd347945hmedium" src="http://www.promotinggroup.com/wp-content/uploads/2009/09/5c7f9bcb-fca2-4fb4-a82d-0489cd347945hmedium-185x125.jpg" alt="5c7f9bcb fca2 4fb4 a82d 0489cd347945hmedium 185x125 Googles Espresso Machine" width="185" height="125" /></a>Five years ago, <a href="http://www.google.com/">Google</a> began collecting out-of-print books from various sources to convert into digital downloads, ensuring their survival into the digital age. Some of these books are considered public domain, such as Herman Melville’s classic Moby Dick and all of Shakespeare’s works. Since these works were published <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">before 1923</a>, their copyrights are no longer valid. Other books in Google’s collection are harder to find and have been out of print for years.</p>
<p class="MsoNormal">
<p class="MsoNormal">Google obtained these novels by asking to borrow the books from libraries around the world, including Harvard University’s Widener Library, which recently surpassed the JFK Library as the world’s largest. It is estimated that Google managed to download about <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">6 million out-of-print books</a>.</p>
<p class="MsoNormal">
<p class="MsoNormal">Taking old novels and scanning them into a digital database has a its benefits; it ensures that even the world’s rarest books will survive into the future, even if the libraries holding the physical copies suffer from fire, water damage, or other disaster. This has been a great idea, especially for books that only survive in a few physical copies.</p>
<p class="MsoNormal">
<p class="MsoNormal">Now, Google is advancing the idea even further, allowing customers to buy paperback copies of these novels, printed from Google’s set of digital copies by a speedy printer. The printing machine, called <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">The Espresso Machine</a>, is located in Google’s headquarters in Mountain View, CA. The machine can print a paperback-bound book of about <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">300 pages in under five minutes</a>, making it perfect for people who desire an inexpensive copy of the classics or a version of a hard-to-find book. At the moment, only the <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">2 million non-public domain books</a> in Google’s collection are available for paperback printing, but Google is working on obtaining the printing rights for its other digital books as well. Google has suggested a retail of <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">$8 per book</a>, but the retail store will have final decision on pricing. For each book sold, Google will keep <a href="http://www.msnbc.msn.com/id/32893559/ns/technology_and_science-tech_and_gadgets/">$1 of the proceeds</a>, to be donated to charities.</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/googles-espresso-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/googles-espresso-machine/</feedburner:origLink></item>
		<item>
		<title>Free Marketing Webinar</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/ZM8_NGC0zUw/</link>
		<comments>http://www.promotinggroup.com/seo/free-marketing-webinar/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:01:56 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Branding and Identity]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[branding and identity]]></category>
		<category><![CDATA[bryan eisenberg]]></category>
		<category><![CDATA[click equations]]></category>
		<category><![CDATA[clickequations]]></category>
		<category><![CDATA[craig danuloff]]></category>
		<category><![CDATA[david brussin]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free marketing webinar]]></category>
		<category><![CDATA[free webinar]]></category>
		<category><![CDATA[future now]]></category>
		<category><![CDATA[futurenow]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[monetate]]></category>
		<category><![CDATA[persona marketing]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[recession]]></category>
		<category><![CDATA[recession marketing]]></category>
		<category><![CDATA[search engine optimzation]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=593</guid>
		<description><![CDATA[Next Wednesday, September 16th, a great opportunity to learn marketing tips from the pros will available to all, and we here at Promoting Group highly recommend taking advantage of it. Marketing industry experts Bryan Eisenberg, Craig Danuloff, and David Brussin will be holding a webinar at noon Eastern, 9AM Pacific Time to discuss marketing efforts [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal">Next Wednesday, September 16th, a great opportunity to learn marketing tips from the pros will available to all, and we here at <a href="../">Promoting Group</a> highly recommend taking advantage of it. Marketing industry experts Bryan Eisenberg, Craig Danuloff, and David Brussin will be holding a webinar at noon Eastern, 9AM Pacific Time to discuss marketing efforts during the recession, geared specially toward internet marketing. The webinar is free, though you must register online to attend.</p>
<p class="MsoNormal">
<p class="MsoNormal">“Recession Marketing: From Pre-click to Post-click” is sponsored and hosted by <a href="http://www.monetate.com/">Monetate, Inc</a>., and will feature discussions and commentary from three of the industry’s most highly-regarded business gurus. Bryan Eisenberg is the Chief Persuasion Officer and Co-Founder of <a href="http://www.futurenowinc.com/">FutureNow, Inc</a>, and a best-selling author. He will be discussing and teaching the ins and outs of what he calls “persona marketing,” or rather building a persona or business image brand that will sell, along with your products and services. Craig Danuloff, President and Founder of <a href="http://www.clickequations.com/">ClickEquations, Inc</a>, is an expert on internet marketing and search engine optimization techniques. David Brussin is the CEO and Co-Founder of Monetate, Inc., and will be hosting the discussion as well as sharing his views on how to best maintain and act on your business identity or persona.<span> </span></p>
<p class="MsoNormal">
<p class="MsoNormal">The details of the webinar can be found below:</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Title</strong>:<span> </span>Recession Marketing: From pre-click to post-click</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Date</strong>:<span> </span>Wednesday, September 16, 2009</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Time</strong>:<span> </span>12PM Eastern / 9AM Pacific</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Place</strong>:<span> </span>Online, register at <a href="https://www2.gotomeeting.com/register/985238170">https://www2.gotomeeting.com/register/985238170</a></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Presenters</strong>:</p>
<p class="MsoNormal" style="text-indent: 0.5in;">Bryan Eisenberg, <em>Chief Persuasion Officer and Co-Founder of FutureNow, Inc</em></p>
<p class="MsoNormal" style="text-indent: 0.5in;">Craig Danuloff, <em>President and Founder of ClickEquations, Inc</em>.</p>
<p class="MsoNormal" style="text-indent: 0.5in;">David Brussin, <em>CEO &amp; Co-Founder, Monetate, Inc</em>.</p>
<p class="MsoNormal">
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/seo/free-marketing-webinar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/seo/free-marketing-webinar/</feedburner:origLink></item>
		<item>
		<title>Internet Traffic</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/hMB71WQh5Es/</link>
		<comments>http://www.promotinggroup.com/news/internet-traffic/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 22:26:07 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[email blast]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet traffic]]></category>
		<category><![CDATA[posting]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[rush hour]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[website update]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=589</guid>
		<description><![CDATA[There is a reason that the flow of users on the internet is referred to as “traffic.” Just like traffic on highways and interstates, internet traffic has slow times and rush hours, peaks and ebbs. During the summer, internet traffic is fairly steady, as the younger generation (which comprises a good deal of total internet [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal">There is a reason that the flow of users on the internet is referred to as “traffic.” Just like traffic on highways and interstates, internet traffic has slow times and rush hours, peaks and ebbs. During the summer, internet traffic is fairly steady, as the younger generation (which comprises a good deal of total internet traffic) is free from a set schedule, out of school and home from college. However, now that the fall is here and kids are back in school and schedules have been set, we here at <a href="../">Promoting Group</a> would like to offer you a few tips for making your blogging and website updating plan coincide with the reinstated internet traffic rush hours.</p>
<p class="MsoNormal">
<p class="MsoNormal">If you are planning on updating your website or blog, it may be smartest to do so first thing in the morning (before school) or between 3 and 4 in the afternoon, when most students return home from school, for youth-oriented websites. For websites geared toward an older crowd, updates should be held off until later in the evening, after work and dinner hours are over. Most adolescents check their emails and favorite websites upon returning home from school, while adults tend to check their favorite websites towards the end of the day, when they are beginning to unwind. Updates that are fresh tend to garner better results on search engines, and while adults will quickly glance at updated websites during breaks or lunch hours at work, they will linger over website updates later in the evening, when they have more time.</p>
<p class="MsoNormal">
<p class="MsoNormal">This schedule is not limited to website or blog updates either. If you regularly send email blasts to a large number of people, sending these emails after school or work means that the emails will land in the top of user’s inboxes when they finally log on.</p>
<p class="MsoNormal">
<p class="MsoNormal">To sum up, keep your target audience in mind when updating websites, posting new blogs, or sending email blasts. For youth, updates and emails should be scheduled to appear when children return home from school. For adults, updates and emails will be best received in the early evening. Websites that are updated in the middle of the day tend to get lost in the shuffle of the day, so make sure to keep your schedule fresh and in sync with internet rush hour!</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/internet-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/internet-traffic/</feedburner:origLink></item>
		<item>
		<title>Wikipedia Security</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/JvJV7xu2204/</link>
		<comments>http://www.promotinggroup.com/news/wikipedia-security/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 20:30:05 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[accuracy]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[michael jackson]]></category>
		<category><![CDATA[moderator]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=585</guid>
		<description><![CDATA[Wikipedia has always been a great source for uncovering information, such as the storylines for old television shows, a brief history of cities around the world, and definitions of slang and rare words. However, as any college- or high school-aged student can tell you, it’s never been the most reliable source for good, hard facts. [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><a href="http://www.wikipedia.com/"></a><a href="http://www.wikipedia.com"><a href="http://www.promotinggroup.com/wp-content/uploads/2009/08/wikipedia-logo.png"><img src="http://www.promotinggroup.com/wp-content/uploads/2009/08/wikipedia-logo-102x125.png" alt="wikipedia logo 102x125 Wikipedia Security" title="wikipedia-logo" width="102" height="125" class="alignright size-medium wp-image-586" /></a></a>Wikipedia has always been a great source for uncovering information, such as the storylines for old television shows, a brief history of cities around the world, and definitions of slang and rare words. However, as any college- or high school-aged student can tell you, it’s never been the most reliable source for good, hard facts.</p>
<p class="MsoNormal">
<p class="MsoNormal">The fact that Wikipedia pages can be edited by anyone who surfs the web poses both a benefit and a problem. Opening the information pages up to the public means that over time, a page collects a wealth of information much more detailed and broad than any single author could produce. Little known facts and useful tidbits pop up over time, making reading a Wikipedia page similar to discussing a particular subject with a large group of friends. No one opinion dominates a page, and most of the time false information is overwritten by other authors with more accurate information.</p>
<p class="MsoNormal">
<p class="MsoNormal">Sometimes, however, false information is not removed quickly, much to the downfall of those looking to gather accurate facts from the site. Pranksters have been known to declare healthy celebrities dead, to include racy anecdotes in the biographies of saints, and to become a virtual mourning site for the recently deceased.</p>
<p class="MsoNormal">
<p class="MsoNormal">Wikipedia is now attempting to rectify this situation without overly censoring their large number of public authors. <a href="http://www.msnbc.msn.com/id/32553952/ns/technology_and_science-security/">This article</a> mentions that “at-risk” sites, such as <a href="http://en.wikipedia.org/wiki/Michael_jackson">Michael Jackson’s page</a>, are more tightly monitored than others in some countries, and now Wikipedia is trying to take this <a href="http://www.msnbc.msn.com/id/32553952/ns/technology_and_science-security/">security</a> a step further. For the next few weeks, all additions and modifications to standing Wikipedia pages will have to be approved by a moderator before they are added to the web page. If the system seems to go well, it could become a standard Wikipedia security measure.</p>
<p class="MsoNormal">
<p class="MsoNormal">Hopefully, this procedure will weed out the pranksters and hoax-starters and leave behind a cleaner, more accurate website. However, there is also a chance that the moderators may wipe out some of the more interesting and little-known facts that make Wikipedia such an interesting website. Hopefully a balance can be struck that will be beneficial to all.</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/wikipedia-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/wikipedia-security/</feedburner:origLink></item>
		<item>
		<title>Glossy Icon Template</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/4woyC1GGoIw/</link>
		<comments>http://www.promotinggroup.com/design-tips/glossy-icon-template/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 22:47:13 +0000</pubDate>
		<dc:creator>Ching</dc:creator>
				<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[Design Trends]]></category>
		<category><![CDATA[aaple]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[doenload]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[glossy]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=563</guid>
		<description><![CDATA[The glossy Apple styled icon has been the trend for quite some time, and now we are making your life easier in creating the iPhone icon using the template we created. What you need to do is plug in your logo or icon and make an icon like the one we showed above. What you [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-564 alignnone" title="glossy-iphone-pg-icon" src="http://www.promotinggroup.com/wp-content/uploads/2009/07/glossy-iphone-icon.png" alt="glossy-iphone-pg-icon" width="300" height="300" /></p>
<p style="text-align: left;">The glossy Apple styled icon has been the trend for quite some time, and now we are making your life easier in creating the iPhone icon using the template we created. What you need to do is plug in your logo or icon and make an icon like the one we showed above.</p>
<p style="text-align: left;">What you need to do is paste the image of your choice onto the &#8220;clipping&#8221; layer, and save it as PNG format. That will allow you to put the icon on colored background without running into any problem. Enjoy!</p>
<p style="text-align: left;">
<p style="text-align: center;"><a href="http://www.promotinggroup.com/wp-content/uploads/2009/08/glossy-iphone-icon-template.ai">Adobe Illustrator Template<br />
</a></p>
<p style="text-align: center;"><a href="http://www.promotinggroup.com/wp-content/uploads/2009/08/glossy-iphone-icon-template.psd">Adobe Photoshop Template</a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/design-tips/glossy-icon-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/design-tips/glossy-icon-template/</feedburner:origLink></item>
		<item>
		<title>New Twitter Tips</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/AgRfZSRd_d8/</link>
		<comments>http://www.promotinggroup.com/branding/twitter-tips/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 05:56:13 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Branding and Identity]]></category>
		<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[miley cyrus]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[social media marketing]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter updates]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=573</guid>
		<description><![CDATA[Here at Promoting Group, we have written many blogs about using Twitter to promote your business and get in touch with your clients. However, when used improperly, Twitter posts, or “tweets,” can be…well…annoying. So how do you construct a tweet that is effective? We have several tips for creating tweets that will both get across [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal">Here at <a href="../">Promoting Group</a>, we have written many blogs about using <a href="http://www.twitter.com/">Twitter</a> to promote your business and get in touch with your clients. However, when used improperly, Twitter posts, or “tweets,” can be…well…annoying. So how do you construct a tweet that is effective?</p>
<p class="MsoNormal">
<p class="MsoNormal">We have several tips for creating tweets that will both get across your intended message, and also not annoy your “followers” with unnecessary blathering.</p>
<p class="MsoNormal">The main problem with Twitter is having too many updates. Twitter should be used to keep your business fresh in your clients’ minds and to share important information, not to bombard people with useless information every hour, on the hour. Stick to updating your Twitter account once a day at most, once a week at least.</p>
<p class="MsoNormal">
<p class="MsoNormal">Say something useful. It is better to not post a tweet at all than to post a tweet that does not give your clients any new or interesting information. Announce what new projects you are working on, declare an ongoing project finished, and describe new products. Tweets that read “Great day at work today,” or “Heard a great song on the radio,” are not interesting to clients, and may eventually lead clients to unsubscribe from following your Twitter account.</p>
<p class="MsoNormal">
<p class="MsoNormal">Twitter only allows for 140 characters per tweet. If you find yourself abbreviating words or phrases to fit in your whole idea, take a step back. Abbreviations and shortened phrases are fine for Miley Cyrus, but have no place in the business world. If you can’t fit your tweet into 140 characters, rethink what you want to say. Do not tweet until you can fit your idea into one concise sentence! Simplify, simplify, simplify.</p>
<p class="MsoNormal">
<p class="MsoNormal">With these three ideas in mind, you should be able to tame Twitter and keep your clients checking in. Just remember, do not tweet too often, say something interesting and informative, and mind the 140 character limit carefully. Twitter should be an ally, not a pitfall.</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/branding/twitter-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/branding/twitter-tips/</feedburner:origLink></item>
		<item>
		<title>Microsoft and Yahoo! Announce Deal</title>
		<link>http://feedproxy.google.com/~r/promotinggroup/~3/zOPMDOG-sfs/</link>
		<comments>http://www.promotinggroup.com/news/microsoft-yahoo-announce-deal/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 17:47:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Branding and Identity]]></category>
		<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[internet searches]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[promoting group]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.promotinggroup.com/?p=559</guid>
		<description><![CDATA[Google has certainly seemed to dominate the World Wide Web for the past several years, though both Microsoft and Yahoo! have put up a good fight. Microsoft recently launched its own search engine, called Bing, and Yahoo! reformatted its home page to include a whole slew of social media applications. Google held its own however, [...]]]></description>
			<content:encoded><![CDATA[<p><!--[endif]--></p>
<p class="MsoNormal"><a href="http://www.google.com/">Google</a> has certainly seemed to dominate the World Wide Web for the past several years, though both <a href="http://www.microsoft.com/">Microsoft</a> and <a href="http://www.yahoo.com/">Yahoo!</a> have put up a good fight. Microsoft recently launched its own search engine, called <a href="http://www.bing.com/">Bing</a>, and Yahoo! reformatted its home page to include a whole slew of social media applications. Google held its own however, announcing plenty of its own new applications such as a social media platform called <a href="http://wave.google.com/">Google Wave</a> and even its own operating system to be launched next year.</p>
<p class="MsoNormal">
<p class="MsoNormal">While the three companies competed, it seemed just like your average, run-of-the-mill battle of the brands. Now, however, Microsoft and Yahoo! have <a href="http://www.msnbc.msn.com/id/32193887/ns/business-us_business/">joined forces</a> to try to take down the Google Empire once and for all. Though it still seems unclear as to whether the Yahoo! search engine and the Bing! search engine will be combined into one entity or whether they will work separately to dominate Google, it is fairly certain that all responsibilities for the Yahoo! search engine have been turned over to Microsoft. How Microsoft will choose to use this new power is still unknown.</p>
<p class="MsoNormal">
<p class="MsoNormal">Currently, Microsoft and Yahoo! combined only make up for <a href="http://www.msnbc.msn.com/id/32193887/ns/business-us_business/">28%</a> of the nation’s internet searches, whereas Google holds a whopping <a href="http://www.msnbc.msn.com/id/32193887/ns/business-us_business/">65%</a>. While this Microsoft-Yahoo! deal surely means some trouble for Google, it seems premature to assume that they will be able to dominate Google’s huge lead, even with their combination. All that is clear is that the world of search engines is changing, and changing rapidly. We here at <a href="../">Promoting Group</a> are interested to see how all of these new products, services, upcoming plans, and forged bonds will play out and change the face of the internet as we know it.</p>
<p></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.promotinggroup.com/news/microsoft-yahoo-announce-deal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.promotinggroup.com/news/microsoft-yahoo-announce-deal/</feedburner:origLink></item>
	</channel>
</rss>
