Thursday, July 12, 2007

They've Stolen My @ (at)

They've Stolen My AT


Many people place their email addresses on their Web sites or the Web sites they build. Then, as soon as the site is uploaded to the Internet, their email boxes are flooded with spam. How can you stop this? Try creating a link to your email address.


A common way to make a link to your email address is using the tag:



for example:



When pressing this link, the email client software is opened with your email address in the form field. This is correct if the surfer is using an email client software such as Outlook or Eudora.


When people use Web mail such as gmail or hotmail, clicking a link to an email is useless. For those users, you must provide a different kind of a link to your email:



for example:



The Web mail users cannot USE the link, but they can see your email address, which they can copy and paste or write and type into their Web mail interface.


Specialized software called "spiders" scans the Web pages that are stored on a company's servers. The spiders are also known as "crawlers" or "knowledge-bots" or just "knowbots." Spiders surf the Internet. They are sent out by search engines such as Google, Yahoo, or MSN. Their job is to update the databases of the specific search engines that send them out.


Want a surprise? If you have Web pages that include your email address, then use your favorite search engine to do a search on your email address. The results may surprise you.


There Are Different Types of Spiders


As we've discussed, one type of spider is used to update search engine databases. Another type is used by people who are interested in collecting and using email addresses for their own purposes. These people use spiders to harvest email addresses from Web pages so they can send out advertisements or viruses or anything else that you don't want to the addresses they collect. These spider programs are called "spam bots," and the people who send them out are called "spammers." Spam bots scan Web pages exactly like the search engine spiders do, except that they look for the @ mark, or the source code "mailto:" that is used when constructing an email link.


What Does a Spider See on My Site?


Spiders don't see Web pages like you do. You see a picture of a page that is "rendered" or built by your browser. The behind-the-scenes building blocks used to create a Web page is called "source code" or "HTML code." The spider sees only the source code.


Here's an example. Let's assume that the following appears in the source code of a Web page:



This is the source code to display an image file named "imageFile.jpg". Your browser reads the source code, accesses the image file, and then shows it on screen. The spider, on the other hand, only reads the source code. It doesn't try to access the actual image file. The spider sees only:



In another example, the following appears in the source code:


Welcome

When you use your browser, you see the text Welcome written in green letters: Welcome


The spider, on the other hand, doesn't see any colors. All it sees is the source code.


The source code for an email link on an HTML page looks like this:



or perhaps like this:



Because HTML pages are plain text, it is easy for spiders to extract email addresses. A spider looks first for either the @ sign or the phrase "mailto:". Once the spider recognizes either of these items, it easily figures out the email address that is part of the source code. Therefore, never write your email address as part of the source code. Do not write it as a part of the src property, as a content, in the tag, or in the title property. Make sure that your Web page does not contain your email address, and you will get less spam.</P><br /><P>But, what if you still want your email address to appear on your Web page, in spite of the above? How can you prevent spiders from recognizing that it's an email address?</P><br /><DIV class=txtNote>Note: Think about how much effort you are willing to invest in securing your email address. Remember that, in general, if you make it more difficult for the spiders to recognize your email, you will make it more difficult for end users to use your email. There is no perfect defense against spam or computer viruses. But, there are some simple anti-spam devices that can fool the spiders-and, thus, reduce spam.</DIV><br /><P>Use ONE of the following methods to hide the following email address: <SPAN style="FONT-WEIGHT: bold">joe@hotmail.com</SPAN> from the spiders.</P><br /><H3>Anti-spam Method No. 1: Add Text to the email Address</H3><br /><DIV class=txtConcept>The concept: Add more characters to the email address so that the address becomes invalid. You can add one or more characters. Space is considered a character as well.</DIV><br /><DIV class=uar>User action required: Anyone who tries to write to you via the email address will have to delete the extra characters you have added.</DIV><br /><DIV class=txtSpider>Spider: If everyone in the world does as you do and adds the same text as you do, then spiders will start to "understand" and will be able to figure out the real email address.</DIV><br /><P>Example:</P><br /><DIV class=txtCode><a href="mailto:REMOVETHISjoe@hotmail.com">Send an email</a></DIV><br /><P>Clearly the address "REMOVETHISjoe@hotmail.com" doesn't exist. In order for the address to be valid and useful, the user must erase the text REMOVETHIS, which is easy.</P><br /><P>But if everyone in the world adds REMOVETHIS, then the spiders will start to understand what is going on. To prevent this, use a variety of different phrases, for example:</P><br /><DIV class=txtCode><a href="mailto:joeTAKEITAWAY@hotmail.com">Send an email</a></DIV><br /><P>Another possibility:</P><br /><DIV class=txtCode><a href="mailto:joe-at-hotmail-dot-com">Send an email</a></DIV><br /><H3>Anti-spam Method No. 2: Use Decimal Internet-safe Characters</H3><br /><DIV class=txtConcept>The concept: Use the decimal equivalents of normal characters.</DIV><br /><DIV class=uar>User action required: none.</DIV><br /><DIV class=txtSpider>Spider: If the spider has the required decimal/character conversion table, then it will be able to figure out the address.</DIV><br /><P>The following table shows that the decimal values of the characters a to z are from 97 to 122.</P><br /><TABLE style="TEXT-ALIGN: center" align=center border=1><br /><TBODY><br /><TR><br /><TD>Dec</TD><br /><TD>45</TD><br /><TD>46</TD><br /><TD>64</TD><br /><TD>95</TD><br /><TD>97</TD><br /><TD>98</TD><br /><TD>99</TD><br /><TD>100</TD><br /><TD>101</TD><br /><TD>102</TD><br /><TD>103</TD><br /><TD>104</TD><br /><TD>105</TD><br /><TD>106</TD><br /><TD>107</TD></TR><br /><TR><br /><TD>Char</TD><br /><TD>-</TD><br /><TD>.</TD><br /><TD>@</TD><br /><TD>_</TD><br /><TD>a</TD><br /><TD>b</TD><br /><TD>c</TD><br /><TD>d</TD><br /><TD>e</TD><br /><TD>f</TD><br /><TD>g</TD><br /><TD>h</TD><br /><TD>i</TD><br /><TD>j</TD><br /><TD>k</TD></TR><br /><TR><br /><TD colSpan=16> </TD></TR><br /><TR><br /><TD>Dec</TD><br /><TD>108</TD><br /><TD>109</TD><br /><TD>110</TD><br /><TD>111</TD><br /><TD>112</TD><br /><TD>113</TD><br /><TD>114</TD><br /><TD>115</TD><br /><TD>116</TD><br /><TD>117</TD><br /><TD>118</TD><br /><TD>119</TD><br /><TD>120</TD><br /><TD>121</TD><br /><TD>122</TD></TR><br /><TR><br /><TD>Char</TD><br /><TD>l</TD><br /><TD>m</TD><br /><TD>n</TD><br /><TD>o</TD><br /><TD>p</TD><br /><TD>q</TD><br /><TD>r</TD><br /><TD>s</TD><br /><TD>t</TD><br /><TD>u</TD><br /><TD>v</TD><br /><TD>w</TD><br /><TD>x</TD><br /><TD>y</TD><br /><TD>z</TD></TR></TBODY></TABLE><br /><P>Example: using decimal equivalents, change the source code from:</P><br /><DIV class=txtCode><a href="mailto:joe@hotmail.com">Send an email</a></DIV><br /><P>to</P><br /><DIV class=txtCode><IMG src="images/stolen01.jpg"></DIV><br /><P>The user will see <SPAN style="FONT-WEIGHT: bold">Send an email</SPAN> in the browser window. When putting the cursor over the link, the email address can be viewed in the status bar.</P><br /><P>As you can see, there is a mixture of regular and ASCII characters. When the user clicks on the link, everything will work fine. However, if users want to see the source code, they will find two surprises:/p> <br /><OL><br /><LI>They will not find the @ sign. <br /><LI>Special efforts will be required to decipher the code. </LI></OL><br /><P>If the spider has the decimal/character conversion tables, then the effort to hide the address may be useless.</P><br /><H3>Anti-spam Method No. 3: Use Hexadecimal Internet-safe Characters</H3><br /><DIV class=txtConcept>The concept: Use hexadecimal equivalents of normal characters.</DIV><br /><DIV class=uar>User action required: none.</DIV><br /><DIV class=txtSpider>Spider: If the spider has access to hexadecimal conversion tables, then it will able to decipher the address.</DIV><br /><P>The following table shows that the hexadecimal values of the characters a to z are between 61HEX and 7aHEX</P><br /><TABLE style="TEXT-ALIGN: center" align=center border=1><br /><TBODY><br /><TR><br /><TD>Hex</TD><br /><TD>2d</TD><br /><TD>2e</TD><br /><TD>40</TD><br /><TD>5f</TD><br /><TD>61</TD><br /><TD>62</TD><br /><TD>63</TD><br /><TD>64</TD><br /><TD>65</TD><br /><TD>66</TD><br /><TD>67</TD><br /><TD>68</TD><br /><TD>69</TD><br /><TD>6a</TD><br /><TD>6b</TD></TR><br /><TR><br /><TD>Char</TD><br /><TD>-</TD><br /><TD>.</TD><br /><TD>@</TD><br /><TD>_</TD><br /><TD>a</TD><br /><TD>b</TD><br /><TD>c</TD><br /><TD>d</TD><br /><TD>e</TD><br /><TD>f</TD><br /><TD>g</TD><br /><TD>h</TD><br /><TD>i</TD><br /><TD>j</TD><br /><TD>k</TD></TR><br /><TR><br /><TD colSpan=16> </TD></TR><br /><TR><br /><TD>Hex</TD><br /><TD>6c</TD><br /><TD>6d</TD><br /><TD>6e</TD><br /><TD>6f</TD><br /><TD>70</TD><br /><TD>71</TD><br /><TD>72</TD><br /><TD>73</TD><br /><TD>74</TD><br /><TD>75</TD><br /><TD>76</TD><br /><TD>77</TD><br /><TD>78</TD><br /><TD>79</TD><br /><TD>7a</TD></TR><br /><TR><br /><TD>Char</TD><br /><TD>l</TD><br /><TD>m</TD><br /><TD>n</TD><br /><TD>o</TD><br /><TD>p</TD><br /><TD>q</TD><br /><TD>r</TD><br /><TD>s</TD><br /><TD>t</TD><br /><TD>u</TD><br /><TD>v</TD><br /><TD>w</TD><br /><TD>x</TD><br /><TD>y</TD><br /><TD>z</TD></TR></TBODY></TABLE><br /><P>Example: using hexadecimal equivalents of characters, change the source code from: </P><br /><DIV class=txtCode><a href="mailto:joe@hotmail.com">Send an email</a></DIV><br /><P>to</P><br /><DIV class=txtCode><IMG src="images/stolen02.jpg"></DIV><br /><P>Users will see Send an email in the browser window. When putting the cursor over the link, they will see the email address in the status bar.</P><br /><P>When clicking on the link, everything will work fine. But, if the users want to see the source code, they will find two surprises:<br /><br /><OL><br /><LI>They will not find the @ sign. <br /><LI>They will have difficulties in translating the hexadecimal numbers into English letters. </LI></OL><br /><P>If the spider has hexadecimal conversion tables, then the effort will have been useless.</P><br /><H3>Anti-spam Method No. 4: Use an Image of the email Link</H3><br /><DIV class=txtConcept>The concept: Instead of using the email address as a hot link, the same text appears as an image-an unlinked image.</DIV><br /><DIV class=uar>User action required: To use an image as an address, users will have to manually copy the email address from the image and type it into their email program.</DIV><br /><DIV class=txtSpider>Spider: Doesn't understand that this is an email address!</DIV><br /><P>Example:</P><IMG src="images/stolen03.jpg"> <br /><P>Similar images of email addresses can be generated at the <A href="http://digitalcolony.com/lab/maskemail/maskEmail.aspx" target=_blank>Digital Colony</A></P><br /><P>If you are worried that the spider will be able to convert the image into text by using Optical Character Recognition (OCR) software, then check out this image.</P><IMG src="images/stolen04.jpg"> <br /><P>It is doubtful that this image could be converted to text by OCR software.</P><br /><P>Creating such an image takes time and effort. Only a human eye and a human mind can discern the email address that is hidden in the graphic.</P><br /><P>What is the source code for this image?</P><br /><DIV class=txtCode><img src="imags/singEnc.jpg" /></DIV><br /><P>That's the whole source code. Do NOT "wrap" the image with <SPAN class=txtCode><a href="mailto:...> </a></SPAN>. If you still want the image to be a link to your email address, read method no. 5.</P><br /><H3>Anti-spam Method No. 5: Use a Program to Hide the email Address</H3><br /><DIV class=txtConcept>The concept: A program, written in JavaScript, produces the HTML tags including your email address when the page is shown on the end user's computer by the browser.</DIV><br /><DIV class=uar>User action required: none.</DIV><br /><DIV class=txtSpider>Spider: Should not be able to understand what the script does. However, there are already sophisticated spiders that are able to run JavaScript. These spiders may be able to figure out the email address-if it exists.</DIV><br /><P>Here is a JavaScript example:</P><br /><DIV class=txtCode><script><br />a = "joe";<br />b = "hotmail.com";<br />document.write("<a href='mailto:" + a + "@" + b + "' title='open your email client'>");<br />document.write("email");<br />document.write("</a>");<br /></script><br /></DIV><br /><P> </P><br /><DIV class=txtNote>Note: The line that includes "document.write" needs to be written continuously (without the need to press Enter) until the semi-colon (;). Following the semi-colon, Enter can be pressed. Pay attention: the fourth line is a long one.</DIV><br /><P>The script needs to be inserted in the Web page at exactly the spot on the page that you wish to have an email link.</P><br /><P>If you want your email address to appear but not be hot linked, then use the following code.</P><br /><DIV class=txtCode><script><br />a = "joe";<br />b = "hotmail.com";<br />document.write(a + "@" + b);<br /></script><br /></DIV><br /><P>The script can be improved by using encryption. But, again, if the spider is capable of running JavaScript, the encryption will be of no value.</P><br /><P>If users ask to see the source code, they will have to locate the @ sign and then figure out the email address. This is not an easy task.</P><br /><H3>Anti-spam Method No. 6: Combine Methods No. 4 and No. 5</H3><br /><DIV class=txtConcept>The concept: Combine method no. 4, in which the email address appears as an image, with method no. 5, which uses JavaScript.</DIV><br /><P>Example:</P><br /><DIV class=txtCode><script><br />a = "joe";<br />b = "hotmail.com";<br />document.write("<a href='mailto:" + a + "@" + b + "' title='open your email client'>");<br />document.write("<img src='images/signEnc.jpg' />");<br />document.write("</a>");<br /></script><br /></DIV><br /><P> </P><br /><DIV class=txtNote>Note: The line that includes "document.write" needs to be written continuously (without the need to press Enter) until the semi-colon (;). After the semi-colon, Enter can be pressed. Pay attention: the fourth line is a long one.</DIV><br /><P>After you have written the JavaScript, insert it into the Web page at exactly the place on the page where you wish to have an email link.</P><br /><P>If you only want the address to appear without being hot linked, then use method no. 4 alone.</P><br /><H3>Anti-spam Method No. 7: Combine Data</H3><br /><DIV class=txtConcept>The concept: The email address is part of a text file that is not part of the HTML page. It is inserted only when the Web page is executed (rendered) by the server. Just before sending the Web page to the client, the email address is taken from the text file and inserted into the HTML page.</DIV><br /><DIV class=uar>User action required: none.</DIV><br /><DIV class=wda>Web developer action required (that's you): You must host your Web site in a server with Windows Operating System.</DIV><br /><DIV class=txtSpider>Spider: The spider should not be able to figure out what the source code does. If the spider scans only the files ending with .html, .htm, or.asp, then all will be okay. If, on the other hand, the spider scans other types of files as well, then there potentially could be a problem, although it is possible to be more sophisticated and fool the spider.</DIV><br /><P>The source code looks like this:</P><br /><DIV class=txtCode><object classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"<br />id="ply" height="0" width="0"><br /><param name="DataURL" value="bla.vdr" /><br /><param name="UseHeader" value="True" /><br /></object><br /><a datasrc='#ply' datafld='PlayIt'>bla</a> </DIV><br /><P>The text file, bla.vdr, looks like this: </P><br /><DIV class=txtCode>PlayIt<br />mailto:joe@hotmail.com </DIV><br /><P> </P><br /><DIV class=txtNote>Note: This is a simple text file with the ending .vdr instead of .txt.</DIV><br /><P>Explanation: Why did I use the ending .vdr for the text file? The reason is to lower the possibility that the spider will check that particular file. The extension .vdr is my own invention. Any other extension would work just as well. Most importantly, the extension should not be commonly known. Don't use extensions such as .pdf, .doc, or .txt that the spider might recognize and scan.</P><br /><P>Users who want to see the source code will have two surprises:</P><br /><OL><br /><LI>They won't find the @ sign. <br /><LI>They will have to invest massive efforts to understand how the script connects to the text file with the .vdr ending. </LI></OL><br /><H2>Summary</H2><br /><P>Spammers use spiders to harvest email addresses from the source code that make up HTML pages. </P><br /><P>There are a number of methods that you can use to protect your address from being harvested by spiders. </P><br /><P>We have defined seven different anti-spam methods.</P><br /><P>There are two main considerations in choosing an anti-spam method:</P><br /><OL><br /><LI>How effectively will the anti-spam method protect the email address against spiders? <br /><LI>Will the chosen anti-spam method make it harder or easier for a user to use the email link that appears on the Web page? </LI></OL><br /><P> </P><br><br>Zohar Amihud has written a book on how to create a web site and has contributed to the writing of other books including HTML, JavaScript, ASP, ASP.NET, Visual Basic, C# and Microsoft Office. Zohar holds an MCP (Microsoft Certified Professional) certification and a Master's degree in Business Administration specializing in Marketing & Information Technology. When he's not writing, Zohar is probably in the fitness club doing spinning, weight training or running a treadmill.<br /><br>http://www.bookchamp.net<br /><br><br><br>Article Source: <a href='http://www.articlepros.com/'>http://www.articlepros.com</a><br /> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/03475758122689831265' itemprop='url'/> <a href='https://www.blogger.com/profile/03475758122689831265' rel='author' title='author profile'> <span itemprop='name'>YourDearest</span> </a> </span> </span> <span class='post-timestamp'> at <meta content='http://dear787.blogspot.com/2007/07/they-stolen-my-at.html' itemprop='url'/> <a class='timestamp-link' href='https://dear787.blogspot.com/2007/07/they-stolen-my-at.html?m=1' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2007-07-12T13:50:00-07:00'>1:50 PM</abbr></a> </span> <span class='post-comment-link'> </span> </div> <div class='post-footer-line post-footer-line-2'> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4>No comments:</h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'> <a href='javascript:void(0)' id='Blog1_comment-editor-toggle-link'>Post a Comment</a></h4> <p> </p> <a href='https://www.blogger.com/comment/frame/8186015222986771314?po=2646671962288509162&hl=en-US&saa=85391&origin=https://dear787.blogspot.com&m=1' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/1212307205-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </p> </div> </div> </div> </div> </div> <div class='blog-pager' id='blog-pager'> <div class='mobile-link-button' id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://dear787.blogspot.com/2007/07/search-engine-marketing-firm-get.html?m=1' id='Blog1_blog-pager-newer-link' title='Newer Post'>‹</a> </div> <div class='mobile-link-button' id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://dear787.blogspot.com/2007/07/start-your-own-home-base-business.html?m=1' id='Blog1_blog-pager-older-link' title='Older Post'>›</a> </div> <div class='mobile-link-button' id='blog-pager-home-link'> <a class='home-link' href='https://dear787.blogspot.com/?m=1'>Home</a> </div> <div class='mobile-desktop-link'> <a class='home-link' href='https://dear787.blogspot.com/2007/07/they-stolen-my-at.html?m=0'>View web version</a> </div> </div> <div class='clear'></div> </div></div> </div> </div> <div class='column-left-outer'> <div class='column-left-inner'> <aside> </aside> </div> </div> <div class='column-right-outer'> <div class='column-right-inner'> <aside> </aside> </div> </div> </div> <div style='clear: both'></div> <!-- columns --> </div> <!-- main --> </div> </div> <div class='main-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> <footer> <div class='footer-outer'> <div class='footer-cap-top cap-top'> <div class='cap-left'></div> <div class='cap-right'></div> </div> <div class='fauxborder-left footer-fauxborder-left'> <div class='fauxborder-right footer-fauxborder-right'></div> <div class='region-inner footer-inner'> <div class='foot no-items section' id='footer-1'></div> <!-- outside of the include in order to lock Attribution widget --> <div class='foot section' id='footer-3' name='Footer'><div class='widget Profile' data-version='1' id='Profile1'> <h2>About Me</h2> <div class='widget-content'> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-name-link g-profile' href='https://www.blogger.com/profile/03475758122689831265' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'> YourDearest </a> </dt> </dl> <a class='profile-link' href='https://www.blogger.com/profile/03475758122689831265' rel='author'>View my complete profile</a> <div class='clear'></div> </div> </div><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div></div> </div> </div> <div class='footer-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </footer> <!-- content --> </div> </div> <div class='content-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </div> <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3878540743-widgets.js"></script> <script type='text/javascript'> var BLOG_BASE_IMAGE_URL = 'https://resources.blogblog.com/img';var BLOG_LANG_DIR = 'ltr';window['__wavt'] = 'AOuZoY6cafWX9yQ8cbkTqfHeGcAgRQF5QA:1760335801568';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d8186015222986771314','//dear787.blogspot.com/2007/07/they-stolen-my-at.html?m\x3d1','8186015222986771314'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '8186015222986771314', 'title': 'Danny', 'url': 'https://dear787.blogspot.com/2007/07/they-stolen-my-at.html?m\x3d1', 'canonicalUrl': 'http://dear787.blogspot.com/2007/07/they-stolen-my-at.html', 'homepageUrl': 'https://dear787.blogspot.com/?m\x3d1', 'searchUrl': 'https://dear787.blogspot.com/search', 'canonicalHomepageUrl': 'http://dear787.blogspot.com/', 'blogspotFaviconUrl': 'https://dear787.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-US', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': true, 'isMobileRequest': true, 'mobileClass': ' mobile', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Danny - Atom\x22 href\x3d\x22https://dear787.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Danny - RSS\x22 href\x3d\x22https://dear787.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Danny - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/8186015222986771314/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Danny - Atom\x22 href\x3d\x22https://dear787.blogspot.com/feeds/2646671962288509162/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, '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': '2646671962288509162', 'postImageUrl': 'imageFile.jpg', 'pageName': 'They\x26amp;#39;ve Stolen My @ (at)', 'pageTitle': 'Danny: They\x26amp;#39;ve Stolen My @ (at)'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'Simple', 'localizedName': 'Simple', 'isResponsive': false, 'isAlternateRendering': true, 'isCustom': false, 'variant': 'simplysimple', 'variantId': 'simplysimple'}}, {'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': true, 'title': 'They\x26amp;#39;ve Stolen My @ (at)', 'description': 'They\x27ve Stolen My AT Many people place their email addresses on their Web sites or the Web sites they build. Then, as soon as the site is up...', 'featuredImage': 'https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vDEU0Yq7l7Ouh1AVYo2QhNwkoVdcgDUr_Z9JetPny5jWuEvOzriTskBIyutnBaOgY6w1zqHA', 'url': 'https://dear787.blogspot.com/2007/07/they-stolen-my-at.html?m\x3d1', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 2646671962288509162}}]); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'mobile': true}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'footer-3', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); </script> </body> </html>