<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>HTML Help</title>
  <link>http://htmlcodetutorial.com/help/index.php</link>
  <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  <language>english</language>
  <copyright>(c) Copyright 2009 by HTML Help</copyright>
  <managingEditor>design@htmlcodetutorial.com</managingEditor>
  <webMaster>design@htmlcodetutorial.com</webMaster>
  <pubDate>Sat Nov 21, 2009 6:17 am</pubDate>
  <lastBuildDate>Sat Nov 21, 2009 6:17 am</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>HTML Help</title>
    <url></url>
    <link>http://htmlcodetutorial.com/help/</link>
    <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  </image>

                                      <item>
                                        <title>How can I protect my images?</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=16315#16315</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=31'&gt;Corey Bryant&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Apr 19, 2006 5:25 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Short answer, you cannot.&lt;br /&gt;
&lt;br /&gt;
There is the &lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex9/noright.htm&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;disable right click&lt;/a&gt;: &lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;script language=JavaScript&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
//Disable right mouse click Script&lt;br /&gt;
//By Maximus &amp;#40;maximus@nsimail.com&amp;#41; w/ mods by DynamicDrive&lt;br /&gt;
//For full source code, visit http&amp;#58;//www.dynamicdrive.com&lt;br /&gt;
&lt;br /&gt;
var message=&amp;quot;Function Disabled!&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
///////////////////////////////////&lt;br /&gt;
function clickIE4&amp;#40;&amp;#41;&amp;#123;&lt;br /&gt;
if &amp;#40;event.button==2&amp;#41;&amp;#123;&lt;br /&gt;
alert&amp;#40;message&amp;#41;;&lt;br /&gt;
return false;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&lt;br /&gt;
function clickNS4&amp;#40;e&amp;#41;&amp;#123;&lt;br /&gt;
if &amp;#40;document.layers||document.getElementById&amp;amp;&amp;amp;!document .all&amp;#41;&amp;#123;&lt;br /&gt;
if &amp;#40;e.which==2||e.which==3&amp;#41;&amp;#123;&lt;br /&gt;
alert&amp;#40;message&amp;#41;;&lt;br /&gt;
return false;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&lt;br /&gt;
if &amp;#40;document.layers&amp;#41;&amp;#123;&lt;br /&gt;
document.captureEvents&amp;#40;Event.MOUSEDOWN&amp;#41;;&lt;br /&gt;
document.onmousedown=clickNS4;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
else if &amp;#40;document.all&amp;amp;&amp;amp;!document.getElementById&amp;#41;&amp;#123;&lt;br /&gt;
document.onmousedown=clickIE4;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
&lt;br /&gt;
document.oncontextmenu=new Function&amp;#40;&amp;quot;alert&amp;#40;message&amp;#41;;return false&amp;quot;&amp;#41;&lt;br /&gt;
&lt;br /&gt;
// --&amp;gt; &lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;but someone can easily turn JavaScript off or view the source code to grab the image path.  &lt;br /&gt;
&lt;br /&gt;
Also on Internet Explorer 6.0, there is the image toolbar that will come up.  You can also &lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex9/imagebar.htm&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;disable&lt;/a&gt; this as well by placing this in the &amp;lt;head&amp;gt; &lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;meta http-equiv=&amp;quot;imagetoolbar&amp;quot; content=&amp;quot;no&amp;quot;&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
But once again not a fool-proof method. &lt;br /&gt;
&lt;br /&gt;
You can place the image as a background and then place a spacer.gif over the image.  Still, one can view the source to get the path to the image.&lt;br /&gt;
&lt;br /&gt;
Ways around these are:&lt;ul&gt;&lt;li&gt;Viewing the source and then going directly to the image file, for example: &lt;a href=&quot;http://www.htmlcodetutorial.com/graphics/logo.banner.guide.gif&quot; target=&quot;_blank&quot;&gt;http://www.htmlcodetutorial.com/graphics/logo.banner.guide.gif&lt;/a&gt;&lt;br /&gt;
&lt;li&gt;Pressing CNTL-A (this will select everything on the webpage), CNTL-C (copy) and then going into Frontpage and pressing CNTL-V (paste) into a new page.  This will copy the images and everything else. &lt;br /&gt;
&lt;li&gt;Looking in the temporary internet cache and locating the image there - since all pages / images are usually stored on a user's machine for a few days. &lt;br /&gt;
&lt;li&gt;Doing a Print Screen or Copy Screen&lt;br /&gt;
&lt;li&gt;Another way around this would be to type into your browser:&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;view-source:http://www.htmlcodetutorial.com&lt;/span&gt;&lt;br /&gt;
&lt;li&gt;You can consider placing a watermark on the image which will help some.  &lt;br /&gt;
&lt;li&gt;Some people also slice the image in a few pieces.  This won't help, but might make it more difficult for someone to copy your image(s).&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
-Corey</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=16315#16315</comments>
                                        <author>Corey Bryant</author>
                                        <pubDate>Wed Apr 19, 2006 5:25 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=16315#16315</guid>
                                      </item></channel></rss>