<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hot Discussion &#187; Internet</title>
	<atom:link href="http://www.ehotdiscussion.com/tag/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ehotdiscussion.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 05:09:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Script for Right Click Protection in a webpage</title>
		<link>http://www.ehotdiscussion.com/script-for-right-click-protection-in-a-webpage/</link>
		<comments>http://www.ehotdiscussion.com/script-for-right-click-protection-in-a-webpage/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 09:13:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hot Topics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tips Tricks]]></category>

		<guid isPermaLink="false">http://www.ehotdiscussion.com/script-for-right-click-protection-in-a-webpage/</guid>
		<description><![CDATA[Here comes the script for right click protection, you can disable right click in a webpage by using this script.


Related posts:<ol><li><a href='http://www.ehotdiscussion.com/mouse-gestures-in-opera-a-superb-trick/' rel='bookmark' title='Permanent Link: Mouse Gestures in Opera &#124; a Superb Trick'>Mouse Gestures in Opera &#124; a Superb Trick</a></li><li><a href='http://www.ehotdiscussion.com/speed-up-firefox-configure-your-firefox-for-max-request/' rel='bookmark' title='Permanent Link: Speed up Firefox: Configure your Firefox for Max request'>Speed up Firefox: Configure your Firefox for Max request</a></li><li><a href='http://www.ehotdiscussion.com/creating-shortcuts-in-word/' rel='bookmark' title='Permanent Link: Creating Shortcuts in word'>Creating Shortcuts in word</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Here comes the script for right click protection, you can disable right click in a webpage by using this script.</p>
<p><span id="more-479"></span></p>
<pre name="code" class="c-sharp">&lt;script language="JavaScript" type="text/javascript"&gt;
&lt;!-- Begin
var message="You may not right mouse click this page.";
if (navigator.appName == 'Microsoft Internet Explorer'){
function NOclickIE(e) {
if (event.button == 2 || event.button == 3) {
alert(message);
return false;
}
return true;
}
document.onmousedown=NOclickIE;
document.onmouseup=NOclickIE;
window.onmousedown=NOclickIE;
window.onmouseup=NOclickIE;
}
else {
function NOclickNN(e){
if (document.layers||document.getElementById&amp;&amp;!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NOclickNN; }
document.oncontextmenu=new Function("alert(message);return false")
}
//  End --&gt;
&lt;/script&gt;
<!--more-->

------------------------------------------------------------------------------

var message="You may not right mouse click this page.";
if (navigator.appName == 'Microsoft Internet Explorer'){
function NOclickIE(e) {
if (event.button == 2 || event.button == 3) {
alert(message);
return false;
}
return true;
}
document.onmousedown=NOclickIE;
document.onmouseup=NOclickIE;
window.onmousedown=NOclickIE;
window.onmouseup=NOclickIE;
}
else {
function NOclickNN(e){
if (document.layers||document.getElementById&amp;&amp;!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NOclickNN; }
document.oncontextmenu=new Function("alert(message);return false")
}
--------------------------------------------

1. Disable Right click:

You can use little javascript to stop people copying your images.
But they can view the image urls with
'view&gt;&gt;source' feature of the browser and can copy your images.

Here is the javascript. You have to paste it in the
&lt;head&gt;...&lt;/head&gt; tags of your html code.

&lt;SCRIPT&gt;function click() {if (event.button==2)
{alert('Ooops...\nRight click is disabled!');}}
document.onmousedown=click// - -&gt;&lt;/SCRIPT&gt;

Demo: Right click on this page. You will see the alert box.

------------------------------------

&lt;script type="text/javascript"&gt;
function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
&lt;/script&gt;
-----------------------------</pre>


<p>Related posts:<ol><li><a href='http://www.ehotdiscussion.com/mouse-gestures-in-opera-a-superb-trick/' rel='bookmark' title='Permanent Link: Mouse Gestures in Opera &#124; a Superb Trick'>Mouse Gestures in Opera &#124; a Superb Trick</a></li><li><a href='http://www.ehotdiscussion.com/speed-up-firefox-configure-your-firefox-for-max-request/' rel='bookmark' title='Permanent Link: Speed up Firefox: Configure your Firefox for Max request'>Speed up Firefox: Configure your Firefox for Max request</a></li><li><a href='http://www.ehotdiscussion.com/creating-shortcuts-in-word/' rel='bookmark' title='Permanent Link: Creating Shortcuts in word'>Creating Shortcuts in word</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ehotdiscussion.com/script-for-right-click-protection-in-a-webpage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase Your Internet Speed</title>
		<link>http://www.ehotdiscussion.com/increase-your-internet-speed/</link>
		<comments>http://www.ehotdiscussion.com/increase-your-internet-speed/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 08:53:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips Tricks]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.ehotdiscussion.com/increase-your-internet-speed/</guid>
		<description><![CDATA[Open Notepad and paste the below code in it. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] &#34;SackOpts&#34;=dword:00000001 &#34;TcpWindowSize&#34;=dword:0005ae4c &#34;Tcp1323Opts&#34;=dword:00000003 &#34;DefaultTTL&#34;=dword:00000040 &#34;EnablePMTUBHDetect&#34;=dword:00000000 &#34;EnablePMTUDiscovery&#34;=dword:00000001 &#34;GlobalMaxTcpWindowSize&#34;=dword:0005ae4c Now save this file as speed.reg. Execute it and observe the change! Related posts:Increase IE speedIncrease file system caching: Increase system speed : Increase amount of memory windows to use I/O OperationsSpeed Up Your Internet Connection by Reducing [...]


Related posts:<ol><li><a href='http://www.ehotdiscussion.com/increase-ie-speed/' rel='bookmark' title='Permanent Link: Increase IE speed'>Increase IE speed</a></li><li><a href='http://www.ehotdiscussion.com/increase-file-system-caching-increase-system-speed-increase-amount-of-memory-windows-to-use-io-operations/' rel='bookmark' title='Permanent Link: Increase file system caching: Increase system speed : Increase amount of memory windows to use I/O Operations'>Increase file system caching: Increase system speed : Increase amount of memory windows to use I/O Operations</a></li><li><a href='http://www.ehotdiscussion.com/speed-up-your-internet-connection-by-reducing-your-systems-reserved-bandwidth/' rel='bookmark' title='Permanent Link: Speed Up Your Internet Connection by Reducing Your Systems reserved Bandwidth'>Speed Up Your Internet Connection by Reducing Your Systems reserved Bandwidth</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Open Notepad and paste the below code in it. </p>
<blockquote><p><strong>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]        <br />&quot;SackOpts&quot;=dword:00000001         <br />&quot;TcpWindowSize&quot;=dword:0005ae4c         <br />&quot;Tcp1323Opts&quot;=dword:00000003         <br />&quot;DefaultTTL&quot;=dword:00000040         <br />&quot;EnablePMTUBHDetect&quot;=dword:00000000         <br />&quot;EnablePMTUDiscovery&quot;=dword:00000001         <br />&quot;GlobalMaxTcpWindowSize&quot;=dword:0005ae4c</strong></p>
</blockquote>
<p>Now save this file as speed.reg. Execute it and observe the change!</p>


<p>Related posts:<ol><li><a href='http://www.ehotdiscussion.com/increase-ie-speed/' rel='bookmark' title='Permanent Link: Increase IE speed'>Increase IE speed</a></li><li><a href='http://www.ehotdiscussion.com/increase-file-system-caching-increase-system-speed-increase-amount-of-memory-windows-to-use-io-operations/' rel='bookmark' title='Permanent Link: Increase file system caching: Increase system speed : Increase amount of memory windows to use I/O Operations'>Increase file system caching: Increase system speed : Increase amount of memory windows to use I/O Operations</a></li><li><a href='http://www.ehotdiscussion.com/speed-up-your-internet-connection-by-reducing-your-systems-reserved-bandwidth/' rel='bookmark' title='Permanent Link: Speed Up Your Internet Connection by Reducing Your Systems reserved Bandwidth'>Speed Up Your Internet Connection by Reducing Your Systems reserved Bandwidth</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ehotdiscussion.com/increase-your-internet-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect urls for Famous Websites</title>
		<link>http://www.ehotdiscussion.com/redirect-urls-for-famous-websites/</link>
		<comments>http://www.ehotdiscussion.com/redirect-urls-for-famous-websites/#comments</comments>
		<pubDate>Wed, 12 Jan 2005 16:27:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hot Topics]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.ehotdiscussion.com/?p=61</guid>
		<description><![CDATA[there is also some redirect url available for some websites.. Just type the code (e.gwww.rtyrty.com or type rtyrty in your address bar and press ctrl+Enter) edced &#8211; Gmail uytuyt &#8211; Hotmail rtyrty &#8211; Rediffmail cftcft &#8211; Carrerbuilder.com nhynhy &#8211; naukri rfvrfv &#8211; rapidshare uhbuhb &#8211; Monsterindia ygvygv &#8211; youtube okmokm &#8211; Orkut bvcbvc &#8211; blogger [...]


Related posts:<ol><li><a href='http://www.ehotdiscussion.com/bush_shoe_punch_game/' rel='bookmark' title='Permanent Link: You can hit George Bush by your Shoes &#8211; a game famous in Iraq'>You can hit George Bush by your Shoes &#8211; a game famous in Iraq</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>there is also some redirect url available for some websites..</p>
<p>Just type the code (e.gwww.rtyrty.com or type rtyrty in your address bar and press ctrl+Enter)</p>
<ul>
<li><span style="color: #993300;">edced            &#8211;    Gmail</span></li>
<li><span style="color: #993300;">uytuyt          &#8211;    Hotmail</span></li>
<li><span style="color: #993300;">rtyrty           &#8211;    Rediffmail</span></li>
<li><span style="color: #993300;">cftcft             &#8211;    Carrerbuilder.com</span></li>
<li><span style="color: #993300;">nhynhy         &#8211;    naukri</span></li>
<li><span style="color: #993300;">rfvrfv            &#8211;    rapidshare</span></li>
<li><span style="color: #993300;">uhbuhb         &#8211;    Monsterindia</span></li>
<li><span style="color: #993300;">ygvygv          &#8211;    youtube</span></li>
<li><span style="color: #993300;">okmokm       &#8211;    Orkut</span></li>
<li><span style="color: #993300;">bvcbvc          &#8211;    blogger</span></li>
<li><span style="color: #993300;">wsxwsx        &#8211;    wikipedia</span></li>
<li><span style="color: #993300;">ujmujm        &#8211;    debonairblog</span></li>
<li><span style="color: #993300;">iuyiuy           &#8211;    indiatimes..</span></li>
</ul>
<p><span style="color: #993300;"><br />
</span></p>
<ul>
<li><span style="color: #cc0000;">nytimes.com &#8211; nbvnbv </span></li>
<li><span style="color: #cc0000;">yahoomail &#8211; ytrytr </span></li>
<li><span style="color: #cc0000;">craigslist.com &#8211; cftcft </span></li>
<li><span style="color: #cc0000;">newsgroup &#8211; nhynhy </span></li>
<li><span style="color: #cc0000;">uwants.com &#8211; uhbuhb </span></li>
<li><span style="color: #cc0000;">myspace.com &#8211; mkomko </span></li>
<li><span style="color: #cc0000;">microsoft &#8211; mjumju </span></li>
<li><span style="color: #cc0000;">imagevenue &#8211; ijnijn </span></li>
<li><span style="color: #cc0000;">imageshack &#8211; iuyiuy </span></li>
<li><span style="color: #cc0000;">baidu.com &#8211; bgtbgt </span></li>
<li><span style="color: #cc0000;">usercash.com &#8211; ujmujm </span></li>
</ul>
<p>Make a note of this please&#8230;</p>


<p>Related posts:<ol><li><a href='http://www.ehotdiscussion.com/bush_shoe_punch_game/' rel='bookmark' title='Permanent Link: You can hit George Bush by your Shoes &#8211; a game famous in Iraq'>You can hit George Bush by your Shoes &#8211; a game famous in Iraq</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ehotdiscussion.com/redirect-urls-for-famous-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

