The Science of MMO PART11

>> Thursday, February 5, 2009


Professionalism


If you’re doing business on the internet, one of the most important aspects of your businesses success is your web site. If your web site doesn’t look professional, no matter what product you’re offering, your chance of success will be minimal. Take your time and make sure you understand the full picture before you begin.


Before we begin this tutorial, the absolute best advice I can offer is this…If you really want to succeed on the Internet in the shortest amount of time, I highly recommend Ken Evoy’s highly acclaimed online business building system,


Click Here Site Build it!. This highly professional system was specifically designed to enable anyone to quickly and easily create a successful online business - from building and hosting your web site, to publishing an ezine, developing products and marketing.


The , Site Build it!. system nearly guarantees your success. All the tools, all in one place, and all for one price, are all tied together into a straightforward, integrated, step-by-step process that succeeds.



The appearance of your website is one of the most important aspects of your success. Your product or service will literally be judged by the appearance of your website.


Poor web design is one of the leading causes of small business failure. There are literally thousands of home-based Internet businesses struggling to make a living online. The problem is, they don’t take the time to learn how to properly design their sites.



Web Design Guidelines

Your main page should specifically let your visitors know exactly what you’re offering. If your potential customer can’t find your product or service, they definitely won’t waste a lot of time looking for it. They’ll go on to the next site and probably never return. They’re visiting your site for a specific purpose. They want something your site offers.


Create a page to display your Privacy Policy in regard to the personal information you collect from your visitors. Explain your reasons for collecting the information and let them know if the information will be given to or shared with a third party. We’ll talk more about this later.



Create a page about you and/or your company. Include your name, company name, photograph, biography, address, phone number and email contact information.


Display your copyright information at the bottom of each page. It’s best to include both the word Copyright and the © symbol, as some countries don’t recognize one or the other.

Your copyright might look like this:


Copyright © year Company Name
All rights reserved.


Keep in mind, your visitors may enter your site from pages other than your main page. Make sure you include good navigational links on every page. Place your navigation links together at the top, bottom, left or right side of the page. Use tables to neatly align your links and maintain a nicely organized and uniform appearance throughout. Try to keep the number of clicks required to get from your main page to any other page on your site down to three or four and place your company logo on each page.


Use caution when selecting your background and text colors. Busy backgrounds make text difficult to read and draw the attention away from the text. In addition, always be consistent with your background theme on each page of your site.


Select your colors very carefully, as colors affect your mood and will have an affect on your visitors as well.


Bright colors such as yellow and orange, cause you to become more cheerful or happy, while colors such as blue and purple have a calming effect. Dark colors such as brown and black have a depressing effect. A good rule of thumb is to use colors based on the type of effect you’re trying to achieve.


ALWAYS check and double-check your site for spelling and grammatical errors, and make sure your images and links are all working properly. If you have several errors, this will make your site appear to be unprofessional. If you are designing your site using an HTML editor, use spell check.


If you must use frames, use them sparingly. Frames, if not used properly, can make your site look unprofessional. Avoid making your visitors have to scroll from side to side to view your content. This can be very irritating and cause your visitors to leave. In addition, it is difficult for Search Engines to index sites made up of frames.


If you must use Java on your site, use it sparingly. Consider using JavaScript instead.


If you’re using pop-up windows to display special offers or ezine subscription info, try to use a JavaScript that utilizes cookies. That way the window will only be displayed to your visitors the first time they visit your website.


View your website through different browsers and screen resolutions so you can see how your visitors will view your site.


href="http://bobmo786.wsnet2.hop.clickbank.net/?tid=BOBMO786" target="_top">Click Here! to test your site’s browser compatibility.


Always be consistent when using font styles and sizes. Avoid using large font sizes, as this looks very unprofessional.


Never use tables with standard borders, as they look very unprofessional. If you’d like to use tables with borders, consider using a color border that is size one or two. You’ll learn more about tables and borders later.


Continually add new content to your site. Give your visitors a reason to keep coming back.


Web Design Tips


When designing your website’s main page, instead of trying to cram all of your information into one page, consider creating sections. These sections can contain highlights of your information with a link to further information. You can set your sections up in tables with colored heading sections for information such as news, articles, products or whatever you’d like.


It’s much better to keep your main page down to the most essential elements. You can then use links to additional pages to provide the detailed information. A good rule of thumb is "less is more." In other words, keep your main page as small as possible, while at the same time, include your most important elements.


To enhance your page, you can format your text using bold headlines, colored table cells, and graphic bullets and/or arrows.


If you use the same graphic bullets and arrows throughout your page, you can enhance your page’s appearance, but you won’t add any additional time to your site’s load time. When you reuse an image, your image only has to load once. When the image has loaded, it will instantly be displayed in all of the other locations.



Web Design Mistakes
Poor load time
Poor overall appearance
Spelling/Grammar mistakes
No contact information
Poor content
Poor navigation
Broken links and graphics
Poor browser compatibility
Large slow loading graphics
Too many graphics
Pages scrolling to oblivion
Multiple use of animated graphics
Animated bullets
Too many graphic and/or line dividers
Busy, distracting backgrounds
Multiple banners and buttons
Poor use of frames
Large fonts
Pop up messages
Over use of Java
Poor use of tables
Poor organization
Different backgrounds on each page
Over powering music set to AutoPlay
Confusing
Too much advertising
Large Welcome banners
Multiple colored text
Text difficult to read
No Meta tags
Multiple use of different fonts
Under construction signs
Scrolling text in the status bar
Large scrolling text across the page
Poor use of mouse over effects


Take your time and design your site very carefully. It may take you a little longer, but it will be well worth the extra time in the long run.

Getting Started


If you’re new to web page design, let’s first begin with how a web page is created.


A web page is created using a language called, Hypertext Markup Language, better known as HTML. You can write your own HTML within a plain text editor, such as Note Pad, or use an HTML editor, which will write the code for you.


HTML codes, also referred to as tags, are enclosed by the lesser than (<) and greater than (>) brackets and may be written in capital or lower case letters.


The opening bracket is followed by an element, which is a browser command, and ends with the closing bracket.



An element may also be followed by attributes, which are words describing the properties of the element, and further instruct the browser.



Attributes are only contained in the opening tags to the right of the element and are separated by a space and followed by an equal (=) sign.

The value follows the equal sign and is enclosed in quotes.


Basic HTML Document Structure
Below is a very basic HTML document structure. It contains the opening HTML tag, the TITLE tag enclosed between the opening and closing HEAD tags, the opening and closing BODY tags and the closing HTML tag.

All of your text, graphics and any additional HTML codes will be placed between the .. and .. tags.


..
..
Your Web Page Title
..
..

..
..
Each HTML tag above contains an opening tag and a closing tag. The opening tag is written with the command enclosed with brackets.

Example: ..

The closing tag contains a forward slash followed by the command enclosed with brackets.

Example: ..

The opening tag is telling the browser to begin the specified action and the closing tag is telling the browser to end the action.

The proper way to write HTML is to place your closing tags in sequence with the opening tags.

This is an example of a properly written code:

Example

This is an example of an improperly written code:

Example
Creating an HTML Page
Begin writing your HTML by creating your document’s basic layout. Copy and paste this code into your text or HTML editor.


..
..
Your Page Title
..
..

This area will contain everything that will be visible through a web browser, such as text and graphics. All of the information will be HTML coded.

For a complete list of HTML codes and examples, visit our HTML Codes Chart.

..
..
.. - Begins your HTML document·

.. - Contains information about the page such as the TITLE, META tags for proper Search Engine indexing, STYLE tags, which determine the page layout, and JavaScript coding for special effects.

- The TITLE of your page. This will be visible in the title bar of the viewers’ browser. <br /> <br /> - Closes the tag. <br /> <br />.. - Closes the .. tag. <br /> <br />.. - This is where you will begin writing your document and placing your HTML codes. <br /> <br />.. - Closes the .. tag. <br /> <br />.. - Closes the .. tag. <br /> <br /> <br />For a complete list of HTML codes and examples, visit our HTML Codes Chart. <br /> <br /> <br /><span style="font-weight:bold;">Saving an HTML Document</span> <br /> <br /> <br />Once you’ve written some HTML, you will need to save your document with an htm or html extension. If the page you’re saving is the main or opening page of your web site, it must be saved as, index.htm or index.html. When you acquire your own domain, your server will look for a file called index when your link, http://www.yourdomain.com/ is clicked on. If you’re saving a page other than your main page, try to save it using the page’s primary keyword phrase for higher Search Engine ranking. <br /> <br /> <br />Your file name should look something like this: index.htm <br /> <br /> <br /><span style="font-weight:bold;">Viewing an HTML Document</span> <br /> <br /> <br />If you’re using a text editor to write your HTML, and you’d like to preview your work, you must view your new page through your web browser. Open your web browser and go to "File" - "Open" on the browser toolbar and then "Browse" through the folders to locate the new page you created. Double click on the file to select it and click on "OK" <br /> <br /> <br /><span style="font-weight:bold;">WYSIWYG Editors</span> <br /> <br /> <br />If you decide to use a WYSIWYG (What You See Is What You Get) editor, which is highly recommended, here are a few of the most popular: <br /> <br />Coffee Cup <br />DreamWeaver <br />HotDog <br />HotMetal Pro <br />HomeSite <br />Microsoft Frontpage <br /> <br /> <br />Although this mini tutorial provides you with a basic overview to assist you in creating your own web site, there is much more to creating a successful web site than simply learning the basics. For a complete step by step web design course, and over fifty free web page templates, visit my Web Design Mastery site. Click Here!</p> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author'> Posted by MSII </span> <span class='post-timestamp'> at <a class='timestamp-link' href='http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html' title='permanent link'>8:40 AM</a> </span> <span class='post-backlinks post-comment-link'> </span> <span class='post-comment-link'> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post/8867008115661336403/4870044037514906744' title='Email Post'> <img alt='' class='icon-action' src='http://www.blogger.com/img/icon18_email.gif'/> </a> </span> <span class='item-control blog-admin pid-335125193'> <a href='https://www.blogger.com/post-edit.g?blogID=8867008115661336403&postID=4870044037514906744&from=pencil' title='Edit Post'> <img alt='' class='icon-action' src='http://www.blogger.com/img/icon18_edit_allbkg.gif'/> </a> </span> </span> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='http://bobmo2009.blogspot.com/search/label/Professionalism' rel='tag'>Professionalism</a> </span> </div> <div class='post-footer-line post-footer-line-3'></div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4> 0 comments: </h4> <dl id='comments-block'> </dl> <p class='comment-footer'> <a href='http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html#comment-form' onclick=''>Post a Comment</a> </p> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> <div class='comment-form'> <a name='comment-form'></a> <h3>Post a Comment</h3> <p> </p> <iframe allowtransparency='true' frameborder='0' height='275' id='comment-editor' scrolling='auto' src='https://www.blogger.com/comment/frame/8867008115661336403?po=4870044037514906744&hl=en&saa=85391&origin=http://bobmo2009.blogspot.com' width='100%'></iframe> </div> <!--Can't find substitution for tag [adEnd]--> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part12.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part10.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='http://bobmo2009.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://bobmo2009.blogspot.com/feeds/4870044037514906744/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a> </div> </div> </div></div> </div> <div id='side-wrapper2'> <div class='sidebar section' id='sidebar2'><div class='widget HTML' data-version='1' id='HTML4'> <h2 class='title'>Browse The Blog in 35 Languages</h2> <div class='widget-content'> <script src="http://vivociti.com/webservices/getGoogleTranslator2Widget.php?widgetTitle=Browse this Blog in:" type="text/javascript"></script> <!-- Start of StatCounter Code --> <script type="text/javascript"> var sc_project=4978663; var sc_invisible=1; var sc_partition=57; var sc_click_stat=1; var sc_security="b018f5c6"; </script> <script src="http://www.statcounter.com/counter/counter_xhtml.js" type="text/javascript"></script><noscript><div class="statcounter"><a class="statcounter" href="http://www.statcounter.com/blogger/" title="blogspot hit counter"><img alt="blogspot hit counter" src="http://c.statcounter.com/4978663/0/b018f5c6/1/" class="statcounter" /></a></div></noscript> <!-- End of StatCounter Code --> <div id="google_translate_element"></div><script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en' }, 'google_translate_element'); } </script><script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>Twitter - Follow Me</h2> <div class='widget-content'> <a href="https://twitter.com/BobMo2009" rel="bookmark" title=""><img alt="" width="200" src="http://billso.com/images/twitter_logo.gif" height="100"/></a> <script language="javascript" src="http://twittercounter.com/embed/?username=BobMo2009&width=100&style=black" type="text/javascript"></script> <img border="0" src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" align="absmiddle"/> <a href="http://feeds2.feedburner.com/blogspot/FXIn" target="_blank">RSS Feed</a> <img border="0" style="padding:0px 0px 0px 10px;" src="http://i254.photobucket.com/albums/hh92/eblogtemplates/adstheme/mailfeed-icon16x16.png" align="absmiddle"/> <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=blogspot/FXIn&loc=en_US" target="_blank">Email Subscription</a> <a + data:blog.homepageurl http://technorati.com/faves?sub="addfavbtn&add=" expr:href="" target="_blank"><img style="padding:0px 0px 0px 10px;" alt="Add to Technorati Favorites" src="http://static.technorati.com/pix/fave/tech-fav-1.png" align="absmiddle"/></a> </div> <div class='clear'></div> </div> <div class='widget HTML' data-version='1' id='HTML23'> <div class='widget-content'> <script>var flike = { url : "<data:post.url/>", buttonType : "standard", width : "450", height : "100" }</script><script src="http://orkut-share.googlecode.com/svn/trunk/flike.js"> </script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML21'> <h2 class='title'>Free Ebook Download</h2> <div class='widget-content'> <form action="http://cbtopsites.com/ar/s.php" style="margin:-1px" method="get"> FREE eBooks + Tips: <input maxlength="40" onfocus="this.select()" value="Your Name" name="f" onclick="this.value=''" size="22" type="text"/> <input maxlength="50" onfocus="this.select()" value="Your Email" name="e" onclick="this.value=''" size="22" type="text"/><br/> <select name="r"> <option value="3"/>from All Categories <option value="4"/>Business to Business <option value="5"/>Health & Fitness <option value="6"/>Home & Family <option value="7"/>Computing & Internet <option value="8"/>Money & Employment <option value="9"/>Marketing & Ads <option value="10"/>Fun & Entertainment <option value="11"/>Sports & Recreation <option value="12"/>Society & Culture </select> <input value="sub" name="a" type="hidden"/> <input value="YOURCLICKBANKNICKNAME" name="ref" type="hidden"/> <input value="Submit" name="submit" type="submit"/> </form> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML15'> <div class='widget-content'> <li id="text-643940872" class="widget widget_text"><h2 class="widgettitle">Visitors since JAN 26-10</h2> <div class="textwidget"><center><!-- NeoCounter total_country_visitors display ... START of code --> <script language="javascript" src="http://www.neoworx.net/neocounter/neocounter2/neoworx_tra cker.php?registered_id=15759&counter_id=15759"> </script> <div id="neocounter4" style="position:relative; width:150px; height:500px"> <div id="map_popup4" style="position:absolute; z-index:9999;"> <img name="map_image4" style="visibility:hidden" /></div>    <script type="text/javascript"> counter_id=15759; display_type="total_country_visitors"; skin=null; mapside=null; autoresize=null;</script> <script type="text/javascript" src="http://neocounter.neoworx-blog-tools.net/neocounter2/neocou nter_launcher_4.js"></script> </div> <!-- NeoCounter total_country_visitors display ... END of code --></center> </div></li> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML2'> <h2 class='title'>CLAIM YOUR FREE EBOOK HERE</h2> <div class='widget-content'> <a href="http://www.ebookdownload4u.com/wp-content/uploads/2008/03/zero-dollars-a-little-talent-and-thirty-days.gif" rel="bookmark" title=""><img alt="" width="250" src="http://www.ebookdownload4u.com/wp-content/uploads/2008/03/zero-dollars-a-little-talent-and-thirty-days.gif " / height="250"/></a> <!---START OF ADD FORM--> For more information please fill out this form:<br/><br/> <form action="http://freeautobot.com/cgi-bin/autores/autores.cgi"> <input value="add_lead_external" name="do" type="hidden"/> <input value="BobMoFree" name="Username" type="hidden"/> <input value="Active" name="Stop_Status" type="hidden"/> <input value="0" name="Cycle_Number" type="hidden"/> <input value="http://efreelance2u.blogspot.com" name="Success_URL" type="hidden"/> <input value="http://freeautobot.com/Failure.html" name="Failure_URL" type="hidden"/> <input value="Added from opt-in form" name="Notes" type="hidden"/> Name: <input value="" name="Name" type="text"/><br/> Email Address: <input value="" name="Email" type="text"/><br/> <input value="Submit" type="submit"/> </form> <!---END OF ADD FORM--> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML10'> <h2 class='title'>Subscribe via email</h2> <div class='widget-content'> <span style="font-weight:bold;"><form action="http://feedburner.google.com/fb/a/mailverify" style="border:1px solid #ccc;padding:3px;text-align:center;" target="popupwindow" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=http/bobmo2009blogspotcom', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Enter your email address:</p><p><input style="width:140px" name="email" type="text"/></p><input value="http/bobmo2009blogspotcom" name="uri" type="hidden"/><input value="en_US" name="loc" type="hidden"/><input value="Subscribe" type="submit"/><p>Subscribe via e mail <a href="http://feedburner.google.com" target="_blank">and get free eBook</a></p></form> <a href="http://s154.photobucket.com/albums/s277/BobMo786/125/?action=view¤t=bloggerebk.jpg" target="_blank"><img border="0" alt="Photobucket" src="http://i154.photobucket.com/albums/s277/BobMo786/125/bloggerebk.jpg"/></a></span> </div> <div class='clear'></div> </div><div class='widget AdSense' data-version='1' id='AdSense12'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-7455724166007247"; google_ad_host="pub-1556223355139109"; google_ad_host_channel="00000"; google_ad_width=250; google_ad_height=250; google_ad_format="250x250_as"; google_ad_type="text_image"; google_color_border="336699"; google_color_bg="FFFFFF"; google_color_link="0000FF"; google_color_url="008000"; google_color_text="000000"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML16'> <h2 class='title'>SPONSOR ADS</h2> <div class='widget-content'> <script src="http://jserve.performancingads.com/js/perfads.js?r=11022" type="text/javascript"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML19'> <div class='widget-content'> <script charset="utf-8" src="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822/US/blogmast-20/8006/2478b09a-9854-46df-b7e4-a7e85b28a471" type="text/javascript"> </script> <noscript><a href="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fblogmast-20%2F8006%2F2478b09a-9854-46df-b7e4-a7e85b28a471&Operation=NoScript">Amazon.com Widgets</a></noscript> </div> <div class='clear'></div> </div></div> <div style='clear: both;'></div> <div id='side-wrapper'> <div class='sidebar section' id='sidebar3'> <div class='widget HTML' data-version='1' id='HTML17'> <h2 class='title'>Affiliate Ads1</h2> <div class='widget-content'> <b:include name="quickedit"/> <div class="clear"/> <div class="bannerhead"/> <div class="banner"> <ul> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://performancingads.com/shop/site/id/9572?origin=12756&campaign=advertise+here"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIakhvubvqmX8wEQfRh9MggPrROU5ekIyg"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXjo6bAssbQfRB-GH4yCIarHqIv8TJ6"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=COG2-baLlqL2sQEQfRh9MggkWENdaUlJyg"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXz6I_ul7XMxgEQfRh9MgiAUQ5UT5elhw"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CLqx266xsb7L-QEQfRh9MggOXBY4gosubQ"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXjo6bAssbQfRB-GH4yCIarHqIv8TJ6"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=COG2-baLlqL2sQEQfRh9MggkWENdaUlJyg"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXz6I_ul7XMxgEQfRh9MgiAUQ5UT5elhw"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CLqx266xsb7L-QEQfRh9MggOXBY4gosubQ"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXjo6bAssbQfRB-GH4yCIarHqIv8TJ6"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=COG2-baLlqL2sQEQfRh9MggkWENdaUlJyg"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXz6I_ul7XMxgEQfRh9MgiAUQ5UT5elhw"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CLqx266xsb7L-QEQfRh9MggOXBY4gosubQ"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://pagead2.googlesyndication.com/pagead/imgad?id=CIXjo6bAssbQfRB-GH4yCIarHqIv8TJ6"/></a> </li> </ul> </div> <div class="clear"/></div></div></div></b:include> </div> <div class='clear'></div> </div></div> </div> <div id='side-wrapper'> <div class='sidebar section' id='sidebar4'><div class='widget HTML' data-version='1' id='HTML13'> <h2 class='title'>Affiliate Ads2</h2> <div class='widget-content'> <b:include name="quickedit"/> <div class="clear"/> <div class="bannerhead"/> <div class="banner"> <ul> <li> <img border="0" style="cursor:pointer;" alt="Hire Me Direct" src="http://tinyurl.com/2p8ufz" onclick="show_direct_form(105869,'http://bobmo2009.blogspot.com/', 'badge_1_blue')"/> </li> <li> <a href="http://www.sponsoredreviews.com/?aid=49912"><img border="0px" alt="Blog Advertising - Advertise on blogs with SponsoredReviews.com" src="http://www.srwww1.com/images/SR/Affiliate/2.jpg"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-55.jpg"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-52.jpg"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-36.gif"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-35.png"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-34.gif"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-33.gif"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-32.gif"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-36.gif"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-35.png"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-34.gif"/></a> </li> <li> <a href="http://bobmo786.atomicblog.hop.clickbank.net/ " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-33.gif"/></a> </li> <li> <a href="http://bobmo786.itsaswell.hop.clickbank.net " rel="bookmark" title=""><img alt="" src="http://i154.photobucket.com/albums/s277/BobMo786/125/your-ad-here-32.gif"/></a> </li> </ul> </div> <div class="clear"/></div></div></div></b:include> </div> <div class='clear'></div> </div></div> </div> <div style='clear: both;'></div> </div> <!-- end side-wrapper2 --> <!-- spacer for skins that sets sidebar and main to be the same height--> <div style='clear: both;'></div> </div> <!-- end content-wrapper --> <div id='middleads-wrapper'> <div class='middleads2 section' id='middleads2'><div class='widget AdSense' data-version='1' id='AdSense3'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-7455724166007247"; google_ad_host="pub-1556223355139109"; google_ad_host_channel="00000"; google_ad_width=728; google_ad_height=15; google_ad_format="728x15_0ads_al_s"; google_color_border="336699"; google_color_bg="FFFFFF"; google_color_link="0000FF"; google_color_url="008000"; google_color_text="000000"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML11'> <div class='widget-content'> <iframe border="0" frameborder="0" marginheight="0" marginwidth="0" height="336" src="http://rcm.amazon.com/e/cm?t=blogmast-20&o=1&p=16&l=st1&mode=books&search=internet%20income&fc1=000000<1=&lc1=3366FF&bg1=FFFFFF&f=ifr" style="border:none;" scrolling="no" width="468"></iframe> <iframe border="0" frameborder="0" marginheight="0" marginwidth="0" height="336" src="http://rcm.amazon.com/e/cm?t=blogmast-20&o=1&p=16&l=st1&mode=books&search=Robert%20kiyosaki&fc1=000000<1=&lc1=3366FF&bg1=FFFFFF&f=ifr" style="border:none;" scrolling="no" width="468"></iframe> </div> <div class='clear'></div> </div></div> </div> <div style='clear: both;'></div> <div id='lower-wrapper'> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar1'><div class='widget Image' data-version='1' id='Image1'> <h2>The Author</h2> <div class='widget-content'> <a href='http://www.facebook.com/bobmo2016'> <img alt='The Author' height='194' id='Image1_img' src='http://2.bp.blogspot.com/_NqaxypyGnn8/SYa_Rj13PII/AAAAAAAAADU/dsnFQpibroU/S371/DRIFT+2008.jpg' width='292'/> </a> <br/> <span class='caption'>Click the picture to view my complete profile</span> </div> <div class='clear'></div> </div><div class='widget LinkList' data-version='1' id='LinkList2'> <h2>Links</h2> <div class='widget-content'> <ul> <li><a href='http://topforexrobotreview.blogspot.com/'>Top 100 Forex Robots Reviews</a></li> <li><a href='http://twitterrescorner.blogspot.com/'>Twitter Tips And Tricks</a></li> <li><a href='http://msii-socialmediamarketing.blogspot.com/'>Social Media Marketing</a></li> <li><a href='http://msii-twittererscbmall.blogspot.com/'>CB MALL - The One and Only</a></li> <li><a href='http://twitterersmall.blogspot.com/'>aStore One Stop Shopping Mall</a></li> <li><a href='http://efreelance2u.blogspot.com/'>eFreelance 2 U - Marketplace Reviews</a></li> <li><a href='http://forexstreamincome.blogspot.com/'>Forex Income</a></li> <li><a href='http://blogpodmasters.blogspot.com/'>Blog Masters</a></li> </ul> <div class='clear'></div> </div> </div></div> </div> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar2'><div class='widget Text' data-version='1' id='Text2'> <h2 class='title'>About This Blog</h2> <div class='widget-content'> Are you sick and tired of your job? And worried about your daily cash flow at night? If you've always dreamt of earning cash that gushes out like toothpaste, then let me show you exactly step-by-step How To…<br /><br /><br />“Set Up Multiple Streams of Income, Have Fun Earning Cash from Home, and Secure your Financial Freedom in Double-Quick time — Even if You're a Complete Beginner”<br /><br />When you Get Hold of these REAL Insider Secrets, you can Create Massive Fortunes using YOUR OWN Cash Machines and have Total Control over your own Financial Destiny. Your Family will be Happy and Safe because you'll have a Big Fat Wallet Stuffed Silly with Unlimited Cash... 100% Guaranteed </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML7'> <h2 class='title'>Thankyou For Your Support</h2> <div class='widget-content'> <script language="JavaScript" src="http://twittercounter.com/remote/?username_owner=BobMo2009&users_id=2697235&width=200&nr_show=15&hr_color=cccccc&a_color=709cb2&bg_color=ffffff" type="text/javascript"></script> </div> <div class='clear'></div> </div></div> </div> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar3'><div class='widget Text' data-version='1' id='Text5'> <h2 class='title'>About the Author</h2> <div class='widget-content'> </div> <div class='clear'></div> </div> <div class='widget HTML' data-version='1' id='HTML6'> <h2 class='title'>Visitors to this page also liked:</h2> <div class='widget-content'> <!-- Include the Google Friend Connect javascript library. --> <script src="http://www.google.com/friendconnect/script/friendconnect.js" type="text/javascript"></script> <!-- Define the div tag where the gadget will be inserted. --> <div id="div-1904707189119286920" style="width:300px;border:1px solid #cccccc;"></div> <!-- Render the gadget into a div. --> <script type="text/javascript"> var skin = {}; skin['BORDER_COLOR'] = '#cccccc'; skin['ENDCAP_BG_COLOR'] = '#e0ecff'; skin['ENDCAP_TEXT_COLOR'] = '#333333'; skin['ENDCAP_LINK_COLOR'] = '#0000cc'; skin['ALTERNATE_BG_COLOR'] = '#ffffff'; skin['CONTENT_BG_COLOR'] = '#ffffff'; skin['CONTENT_LINK_COLOR'] = '#0000cc'; skin['CONTENT_TEXT_COLOR'] = '#333333'; skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc'; skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666'; skin['CONTENT_HEADLINE_COLOR'] = '#333333'; google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */); google.friendconnect.container.renderOpenSocialGadget( { id: 'div-1904707189119286920', url:'http://answersense.appspot.com/spec/latest.xml', site: '08865939009130595111' }, skin); </script> <!-- Include the Google Friend Connect javascript library. --> <script src="http://www.google.com/friendconnect/script/friendconnect.js" type="text/javascript"></script> <!-- Define the div tag where the gadget will be inserted. --> <div id="div-7977389085790896610" style="width:300px;border:1px solid #cccccc;"></div> <!-- Render the gadget into a div. --> <script type="text/javascript"> var skin = {}; skin['BORDER_COLOR'] = '#cccccc'; skin['ENDCAP_BG_COLOR'] = '#e0ecff'; skin['ENDCAP_TEXT_COLOR'] = '#333333'; skin['ENDCAP_LINK_COLOR'] = '#0000cc'; skin['ALTERNATE_BG_COLOR'] = '#ffffff'; skin['CONTENT_BG_COLOR'] = '#ffffff'; skin['CONTENT_LINK_COLOR'] = '#0000cc'; skin['CONTENT_TEXT_COLOR'] = '#333333'; skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc'; skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666'; skin['CONTENT_HEADLINE_COLOR'] = '#333333'; skin['ALIGNMENT'] = 'right'; google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */); google.friendconnect.container.renderSignInGadget( { id: 'div-7977389085790896610', site: '08865939009130595111' }, skin); </script> <!-- Include the Google Friend Connect javascript library. --> <script src="http://www.google.com/friendconnect/script/friendconnect.js" type="text/javascript"></script> <!-- Define the div tag where the gadget will be inserted. --> <div id="div-2244282000438104115" style="width:300px;border:1px solid #cccccc;"></div> <!-- Render the gadget into a div. --> <script type="text/javascript"> var skin = {}; skin['BORDER_COLOR'] = '#cccccc'; skin['ENDCAP_BG_COLOR'] = '#e0ecff'; skin['ENDCAP_TEXT_COLOR'] = '#333333'; skin['ENDCAP_LINK_COLOR'] = '#0000cc'; skin['ALTERNATE_BG_COLOR'] = '#ffffff'; skin['CONTENT_BG_COLOR'] = '#ffffff'; skin['CONTENT_LINK_COLOR'] = '#0000cc'; skin['CONTENT_TEXT_COLOR'] = '#333333'; skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc'; skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666'; skin['CONTENT_HEADLINE_COLOR'] = '#333333'; skin['NUMBER_ROWS'] = '4'; google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */); google.friendconnect.container.renderMembersGadget( { id: 'div-2244282000438104115', site: '08865939009130595111' }, skin); </script> </div> <div class='clear'></div> </div></div> </div> <div style='clear: both;'></div> <div id='lowerads-wrapper'> <div class='lowerads section' id='lowerads'><div class='widget AdSense' data-version='1' id='AdSense4'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-7455724166007247"; google_ad_host="pub-1556223355139109"; google_ad_host_channel="00000"; google_ad_width=728; google_ad_height=90; google_ad_format="728x90_as"; google_ad_type="text_image"; google_color_border="0075CC"; google_color_bg="FFFFFF"; google_color_link="0000FF"; google_color_url="008000"; google_color_text="000000"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div></div> </div> <div style='clear: both;'></div> </div> <!-- end lower-wrapper --> <div id='footer-wrapper'> <div class='footer section' id='footer'> <div class='widget HTML' data-version='1' id='HTML5'> <div class='widget-content'> . </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML14'> <div class='widget-content'> . </div> <div class='clear'></div> </div> </div> </div> <div style='clear: both;'></div> </div> <!-- end blog-wrapper --> <div id='bottomads-wrapper'> <div class='bottomads section' id='bottomads'><div class='widget AdSense' data-version='1' id='AdSense5'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-7455724166007247"; google_ad_host="pub-1556223355139109"; google_ad_host_channel="00000"; google_ad_width=728; google_ad_height=15; google_ad_format="728x15_0ads_al_s"; google_color_border="336699"; google_color_bg="FFFFFF"; google_color_link="0000FF"; google_color_url="008000"; google_color_text="000000"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div></div> </div> </div> <!-- end outer-wrapper --> <!-- Please don't remove the credits below as we spent many hours creating this blogger template. It's only reasonable that you keep the link to Ourblogtemplates.com. --> <div id='credit'> <div id='creditleft'> <p><b>  © <a href='http://www.ourblogtemplates.com/'>Blogger template</a> <i>Simple n' Sweet</i> by <a href='http://www.ourblogtemplates.com/'>Ourblogtemplates.com</a> 2009</b></p> </div> <div id='creditright'> <p><b>Back to <a href='#outer-wrapper'>TOP</a>  </b></p> </div> </div> <!-- end credit --> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3878540743-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY5Ke2aV1xZV99fzdEtRxucT5M6xyw:1760043786287';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d8867008115661336403','//bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html','8867008115661336403'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '8867008115661336403', 'title': 'Multiple Streams of Internet Income', 'url': 'http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html', 'canonicalUrl': 'http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html', 'homepageUrl': 'http://bobmo2009.blogspot.com/', 'searchUrl': 'http://bobmo2009.blogspot.com/search', 'canonicalHomepageUrl': 'http://bobmo2009.blogspot.com/', 'blogspotFaviconUrl': 'http://bobmo2009.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Multiple Streams of Internet Income - Atom\x22 href\x3d\x22http://bobmo2009.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Multiple Streams of Internet Income - RSS\x22 href\x3d\x22http://bobmo2009.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Multiple Streams of Internet Income - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/8867008115661336403/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Multiple Streams of Internet Income - Atom\x22 href\x3d\x22http://bobmo2009.blogspot.com/feeds/4870044037514906744/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-7455724166007247', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/fe77985009f43787', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '4870044037514906744', 'postImageThumbnailUrl': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifvMyoI1tK36oFd17wCNINYjB2vO1nXTQnOu4ZcT623P6CAU9CaYYviUxxc6jwXr3ZXMvyuQ-IVfmZCJLNZhtNmh0rB5iFZBNO0efCKkYvE82DyZqddaLZAvEzJo0cMGJMveZQfjztBHk/s72-c/Money+Growing+On+Tree2.jpg', 'postImageUrl': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifvMyoI1tK36oFd17wCNINYjB2vO1nXTQnOu4ZcT623P6CAU9CaYYviUxxc6jwXr3ZXMvyuQ-IVfmZCJLNZhtNmh0rB5iFZBNO0efCKkYvE82DyZqddaLZAvEzJo0cMGJMveZQfjztBHk/s400/Money+Growing+On+Tree2.jpg', 'pageName': 'The Science of MMO PART11', 'pageTitle': 'Multiple Streams of Internet Income: The Science of MMO PART11'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'The Science of MMO PART11', 'description': '\r Professionalism \r \r \r If you\u2019re doing business on the internet, one of the most important aspects of your businesses success is your web s...', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifvMyoI1tK36oFd17wCNINYjB2vO1nXTQnOu4ZcT623P6CAU9CaYYviUxxc6jwXr3ZXMvyuQ-IVfmZCJLNZhtNmh0rB5iFZBNO0efCKkYvE82DyZqddaLZAvEzJo0cMGJMveZQfjztBHk/s400/Money+Growing+On+Tree2.jpg', 'url': 'http://bobmo2009.blogspot.com/2009/02/science-of-mmo-part11.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 4870044037514906744}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'topads', document.getElementById('HTML8'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'linkbar', document.getElementById('LinkList1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML22', 'main', document.getElementById('HTML22'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'main', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/52802623-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar2', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'sidebar2', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML23', 'sidebar2', document.getElementById('HTML23'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML21', 'sidebar2', document.getElementById('HTML21'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML15', 'sidebar2', document.getElementById('HTML15'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'sidebar2', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML10', 'sidebar2', document.getElementById('HTML10'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense12', 'sidebar2', document.getElementById('AdSense12'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML16', 'sidebar2', document.getElementById('HTML16'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML19', 'sidebar2', document.getElementById('HTML19'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML17', 'sidebar3', document.getElementById('HTML17'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML13', 'sidebar4', document.getElementById('HTML13'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense3', 'middleads2', document.getElementById('AdSense3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML11', 'middleads2', document.getElementById('HTML11'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image1', 'lowerbar1', document.getElementById('Image1'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList2', 'lowerbar1', document.getElementById('LinkList2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text2', 'lowerbar2', document.getElementById('Text2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'lowerbar2', document.getElementById('HTML7'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text5', 'lowerbar3', document.getElementById('Text5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'lowerbar3', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense4', 'lowerads', document.getElementById('AdSense4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'footer', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML14', 'footer', document.getElementById('HTML14'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense5', 'bottomads', document.getElementById('AdSense5'), {}, 'displayModeFull')); </script> </body> </html>