<?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>bugs of a debugger &#187; JavaScript</title>
	<atom:link href="http://arunmvishnu.com/category/programming/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://arunmvishnu.com</link>
	<description>itz all about me, my works, my views, my feelings …. all my bla bla blas</description>
	<lastBuildDate>Thu, 09 Sep 2010 09:55:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Font resizing using jQuery</title>
		<link>http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html</link>
		<comments>http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html#comments</comments>
		<pubDate>Wed, 15 Apr 2009 17:46:30 +0000</pubDate>
		<dc:creator>Arun Vishnu</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://arunmvishnu.com/?p=552</guid>
		<description><![CDATA[Font Resizing is a very common feature in many modern websites. This can be done very easily with jQuery. The following script uses cookies to save the user preference, so the user preference is saved. jQuery Cookie plugin is used for managing cookie using jQuery. So include that too.
the html for increase, decrease links

&#60;div&#62;
	&#60;a href=&#34;javascript:void [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Font Resizing is a very common feature in many modern websites. This can be done very easily with <a href="http://jquery.com/">jQuery</a>. The following script uses cookies to save the user preference, so the user preference is saved. <a href="http://plugins.jquery.com/project/cookie">jQuery Cookie plugin</a> is used for managing cookie using jQuery. So include that too.</p>
<p>the html for increase, decrease links</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript:void decreaseFont();&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;font-smaller&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Reduce font size&quot;</span>&gt;</span>-<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript:void normalFont();&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;font-normal&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Normal font size&quot;</span>&gt;</span>0<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span> 
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript:void increaseFont();&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;font-bigger&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Increase font size&quot;</span>&gt;</span>+<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p>Add the following code just before the </body> tag.
<p>
<span id="more-552"></span></p>
<pre name="code" class="javascript">
<script type="text/javascript">
/*
Managing font
Author: Arun Vishnu

http://arunmvishnu.com/

*/
// Set the font sie during page load. Check cookie for stored font size
function currFontSize(){
	var crntFnt = $.cookie('userFontSize');
	if(crntFnt != null) {
		crntFnt = parseFloat(crntFnt, 10);
		$('html').css('font-size', crntFnt);
	}
	return false;
}
// normal font
function normalFont(){
	var domain = document.domain;
	$('html').css('font-size', 13);
	$.cookie('userFontSize', 13, { expires: 7, path: '/', domain: domain });
	return false;
}
// Increase font
function increaseFont(){
	var currentFontSize = $('html').css('font-size');
	var domain = document.domain;
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*1.2;
    if(newFontSize<17){
    	$.cookie('userFontSize', newFontSize, { expires: 7, path: '/', domain: domain });
    	$('html').css('font-size', newFontSize);
    }
    return false;
}
// Decrease font
function decreaseFont(){
	var currentFontSize = $('html').css('font-size');
	var domain = document.domain;
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*.8;
    if(newFontSize>8){
    	$.cookie('userFontSize', newFontSize, { expires: 7, path: '/', domain: domain });
    	$('html').css('font-size', newFontSize);
    }
    return false;
}
// End of Managing font
</script>
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Font+resizing+using+jQuery&amp;du=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;cn=Font%20Resizing%20is%20a%20very%20common%20feature%20in%20many%20modern%20websites.%20This%20can%20be%20done%20very%20easily%20with%20jQuery.%20The%20following%20script%20uses%20cookies%20to%20save%20the%20user%20preference%2C%20so%20the%20user%20preference%20is%20saved.%20jQuery%20Cookie%20plugin%20is%20used%20for%20managing%20cookie%20using%20jQuery.%20So%20include%20that%20too.%0D%0Athe%20html%20for%20" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;t=Font+resizing+using+jQuery" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Font+resizing+using+jQuery+-+http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html+(via+@arunmvishnu)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;submitHeadline=Font+resizing+using+jQuery&amp;submitSummary=Font%20Resizing%20is%20a%20very%20common%20feature%20in%20many%20modern%20websites.%20This%20can%20be%20done%20very%20easily%20with%20jQuery.%20The%20following%20script%20uses%20cookies%20to%20save%20the%20user%20preference%2C%20so%20the%20user%20preference%20is%20saved.%20jQuery%20Cookie%20plugin%20is%20used%20for%20managing%20cookie%20using%20jQuery.%20So%20include%20that%20too.%0D%0Athe%20html%20for%20&amp;submitCategory=science&amp;submitAssetType=image" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;t=Font+resizing+using+jQuery" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery&amp;summary=Font%20Resizing%20is%20a%20very%20common%20feature%20in%20many%20modern%20websites.%20This%20can%20be%20done%20very%20easily%20with%20jQuery.%20The%20following%20script%20uses%20cookies%20to%20save%20the%20user%20preference%2C%20so%20the%20user%20preference%20is%20saved.%20jQuery%20Cookie%20plugin%20is%20used%20for%20managing%20cookie%20using%20jQuery.%20So%20include%20that%20too.%0D%0Athe%20html%20for%20&amp;source=bugs of a debugger" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Font+resizing+using+jQuery&amp;link=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;t=Font+resizing+using+jQuery" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;title=Font+resizing+using+jQuery" rel="nofollow" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html&amp;n=Font+resizing+using+jQuery&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Farunmvishnu.com%2Fprogramming%2Fjavascript%2Ffont-resizing-using-jquery.html&amp;linkname=Font%20resizing%20using%20jQuery"><img src="http://arunmvishnu.com/home/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://arunmvishnu.com/programming/javascript/font-resizing-using-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable right-click contextual menu</title>
		<link>http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html</link>
		<comments>http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html#comments</comments>
		<pubDate>Mon, 16 Mar 2009 09:44:36 +0000</pubDate>
		<dc:creator>Arun Vishnu</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://arunmvishnu.com/?p=545</guid>
		<description><![CDATA[You can disable right-click contextual menu in your website using jQuery. Download and include jQuery library in your page and add the following code before the  tag.



$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});


Thatz it  





		
			Promote this on Orkut
		
		
			Share this on Facebook
		
		
			Digg this!
		
		
			Share [...]


Related posts:<ol><li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-february-18th.html' rel='bookmark' title='Permanent Link: Weekly Digest for February 18th'>Weekly Digest for February 18th</a> <small> RT @praveen_v: http://bit.ly/b1gC5A &#8211; developed my first jquery plugin,...</small></li>
<li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-december-17th.html' rel='bookmark' title='Permanent Link: Weekly Digest for December 17th'>Weekly Digest for December 17th</a> <small> After 10 years AOL is now officially independent from...</small></li>
<li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-november-26th.html' rel='bookmark' title='Permanent Link: Weekly Digest for November 26th'>Weekly Digest for November 26th</a> <small> Didn&#8217;t get time to read any tweets till now..what...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You can disable right-click contextual menu in your website using jQuery. Download and include jQuery library in your page and add the following code before the </body> tag.<br />
<span id="more-545"></span></p>
<pre name="code" class="javascript">
<script language="javascript" type="text/javascript">
$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});
</script>
</pre>
<p>Thatz it <img src='http://arunmvishnu.com/home/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Disable+right-click+contextual+menu&amp;du=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;cn=You%20can%20disable%20right-click%20contextual%20menu%20in%20your%20website%20using%20jQuery.%20Download%20and%20include%20jQuery%20library%20in%20your%20page%20and%20add%20the%20following%20code%20before%20the%20%20tag.%0D%0A%0D%0A%0D%0A%0D%0A%24%28document%29.ready%28function%28%29%7B%0D%0A%20%20%20%20%24%28document%29.bind%28%22contextmenu%22%2Cfunction%28e%29%7B%0D%0A%20%20%20%20%20%20%20%20return%20false%3B%0D%0A%20%20%20%20%7D%29%3B%0D%0A%7D%29%3B%0D%0A%0D%0A%0D%0AThatz" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;t=Disable+right-click+contextual+menu" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Disable+right-click+contextual+menu+-+http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html+(via+@arunmvishnu)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;submitHeadline=Disable+right-click+contextual+menu&amp;submitSummary=You%20can%20disable%20right-click%20contextual%20menu%20in%20your%20website%20using%20jQuery.%20Download%20and%20include%20jQuery%20library%20in%20your%20page%20and%20add%20the%20following%20code%20before%20the%20%20tag.%0D%0A%0D%0A%0D%0A%0D%0A%24%28document%29.ready%28function%28%29%7B%0D%0A%20%20%20%20%24%28document%29.bind%28%22contextmenu%22%2Cfunction%28e%29%7B%0D%0A%20%20%20%20%20%20%20%20return%20false%3B%0D%0A%20%20%20%20%7D%29%3B%0D%0A%7D%29%3B%0D%0A%0D%0A%0D%0AThatz&amp;submitCategory=science&amp;submitAssetType=image" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;t=Disable+right-click+contextual+menu" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu&amp;summary=You%20can%20disable%20right-click%20contextual%20menu%20in%20your%20website%20using%20jQuery.%20Download%20and%20include%20jQuery%20library%20in%20your%20page%20and%20add%20the%20following%20code%20before%20the%20%20tag.%0D%0A%0D%0A%0D%0A%0D%0A%24%28document%29.ready%28function%28%29%7B%0D%0A%20%20%20%20%24%28document%29.bind%28%22contextmenu%22%2Cfunction%28e%29%7B%0D%0A%20%20%20%20%20%20%20%20return%20false%3B%0D%0A%20%20%20%20%7D%29%3B%0D%0A%7D%29%3B%0D%0A%0D%0A%0D%0AThatz&amp;source=bugs of a debugger" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Disable+right-click+contextual+menu&amp;link=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;t=Disable+right-click+contextual+menu" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;title=Disable+right-click+contextual+menu" rel="nofollow" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html&amp;n=Disable+right-click+contextual+menu&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Farunmvishnu.com%2Fprogramming%2Fjavascript%2Fdisable-right-click-contextual-menu.html&amp;linkname=Disable%20right-click%20contextual%20menu"><img src="http://arunmvishnu.com/home/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-february-18th.html' rel='bookmark' title='Permanent Link: Weekly Digest for February 18th'>Weekly Digest for February 18th</a> <small> RT @praveen_v: http://bit.ly/b1gC5A &#8211; developed my first jquery plugin,...</small></li>
<li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-december-17th.html' rel='bookmark' title='Permanent Link: Weekly Digest for December 17th'>Weekly Digest for December 17th</a> <small> After 10 years AOL is now officially independent from...</small></li>
<li><a href='http://arunmvishnu.com/miscellaneous/lifestream/weekly-digest-for-november-26th.html' rel='bookmark' title='Permanent Link: Weekly Digest for November 26th'>Weekly Digest for November 26th</a> <small> Didn&#8217;t get time to read any tweets till now..what...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arunmvishnu.com/programming/javascript/disable-right-click-contextual-menu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File extension validation Javascript</title>
		<link>http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html</link>
		<comments>http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html#comments</comments>
		<pubDate>Wed, 27 Feb 2008 02:04:00 +0000</pubDate>
		<dc:creator>Arun Vishnu</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://arunvishnuflip.wordpress.com/2008/02/27/file-extension-validation-javascript/</guid>
		<description><![CDATA[You can use this function to validate the extension of a file, for client side file upload checkes.

// You can specify the file type in the code "valid_extensions = /(.doc&#124;.pdf)$/i;" .
//If you want to add .docx supprt simply add &#124;.docx (ex:(.doc&#124;.pdf &#124;.docx&#124; .your-extension) ) 

var valid_extensions = /(.doc&#124;.pdf)$/i;
function CheckExtension(fld)
{
	if(fld.value) {
		if (valid_extensions.test(fld.value)){
			return true;
		} else {
			return false;
		}
	} [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>You can use this function to validate the extension of a file, for client side file upload checkes.</p>
<pre class="javascript" name="code">
// You can specify the file type in the code "valid_extensions = /(.doc|.pdf)$/i;" .
//If you want to add .docx supprt simply add |.docx (ex:(.doc|.pdf |.docx| .your-extension) ) 

var valid_extensions = /(.doc|.pdf)$/i;
function CheckExtension(fld)
{
	if(fld.value) {
		if (valid_extensions.test(fld.value)){
			return true;
		} else {
			return false;
		}
	} else {
		return true;
	}
}
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=File+extension+validation+Javascript&amp;du=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;cn=You%20can%20use%20this%20function%20to%20validate%20the%20extension%20of%20a%20file%2C%20for%20client%20side%20file%20upload%20checkes.%0D%0A%0D%0A%0D%0A%2F%2F%20You%20can%20specify%20the%20file%20type%20in%20the%20code%20%22valid_extensions%20%3D%20%2F%28.doc%7C.pdf%29%24%2Fi%3B%22%20.%20%0D%0A%2F%2FIf%20you%20want%20to%20add%20.docx%20supprt%20simply%20add%20%7C.docx%20%28ex%3A%28.doc%7C.pdf%20%7C.docx%7C%20.your-extension%29%20%29%20%0D%0A%0D%0Avar%20valid_" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;t=File+extension+validation+Javascript" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=File+extension+validation+Javascript+-+http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html+(via+@arunmvishnu)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;submitHeadline=File+extension+validation+Javascript&amp;submitSummary=You%20can%20use%20this%20function%20to%20validate%20the%20extension%20of%20a%20file%2C%20for%20client%20side%20file%20upload%20checkes.%0D%0A%0D%0A%0D%0A%2F%2F%20You%20can%20specify%20the%20file%20type%20in%20the%20code%20%22valid_extensions%20%3D%20%2F%28.doc%7C.pdf%29%24%2Fi%3B%22%20.%20%0D%0A%2F%2FIf%20you%20want%20to%20add%20.docx%20supprt%20simply%20add%20%7C.docx%20%28ex%3A%28.doc%7C.pdf%20%7C.docx%7C%20.your-extension%29%20%29%20%0D%0A%0D%0Avar%20valid_&amp;submitCategory=science&amp;submitAssetType=image" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;t=File+extension+validation+Javascript" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript&amp;summary=You%20can%20use%20this%20function%20to%20validate%20the%20extension%20of%20a%20file%2C%20for%20client%20side%20file%20upload%20checkes.%0D%0A%0D%0A%0D%0A%2F%2F%20You%20can%20specify%20the%20file%20type%20in%20the%20code%20%22valid_extensions%20%3D%20%2F%28.doc%7C.pdf%29%24%2Fi%3B%22%20.%20%0D%0A%2F%2FIf%20you%20want%20to%20add%20.docx%20supprt%20simply%20add%20%7C.docx%20%28ex%3A%28.doc%7C.pdf%20%7C.docx%7C%20.your-extension%29%20%29%20%0D%0A%0D%0Avar%20valid_&amp;source=bugs of a debugger" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=File+extension+validation+Javascript&amp;link=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;t=File+extension+validation+Javascript" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;title=File+extension+validation+Javascript" rel="nofollow" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html&amp;n=File+extension+validation+Javascript&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Farunmvishnu.com%2Fprogramming%2Fjavascript%2Ffile-extension-validation-javascript.html&amp;linkname=File%20extension%20validation%20Javascript"><img src="http://arunmvishnu.com/home/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://arunmvishnu.com/programming/javascript/file-extension-validation-javascript.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript for validating a date</title>
		<link>http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html</link>
		<comments>http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html#comments</comments>
		<pubDate>Tue, 26 Feb 2008 01:57:00 +0000</pubDate>
		<dc:creator>Arun Vishnu</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://arunvishnuflip.wordpress.com/2008/02/26/javascript-for-validating-a-date/</guid>
		<description><![CDATA[Javascript for validating a date.
Pass month, day, year as parameters. This function will return true if the date is valid.

// Author: arunmvishnu.com
function validDate(month, day, year){
	if(month =='0' &#124;&#124; day =='0' &#124;&#124; year=='0'){
		return false;
	}

	switch(month){
		case '1': //** jan
		case '3': //** March
		case '5': //** May
		case '7': //** July
		case '8': //** Aug
		case '10': //** Nov
		case '12': //** Dec

		if(day >=1 &#038;&#038; [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Javascript for validating a date.</p>
<p>Pass month, day, year as parameters. This function will return true if the date is valid.</p>
<pre name="code" class="javascript">
// Author: arunmvishnu.com
function validDate(month, day, year){
	if(month =='0' || day =='0' || year=='0'){
		return false;
	}

	switch(month){
		case '1': //** jan
		case '3': //** March
		case '5': //** May
		case '7': //** July
		case '8': //** Aug
		case '10': //** Nov
		case '12': //** Dec

		if(day >=1 &#038;&#038; day <= 31){
			return true;
		} else {
			return false;
		}

		case '4': //** APRIL
		case '6' : //** JUNE
		case '9' : //** SEPTEMBER
		case '11' : //** NOVEMBER
		if(day >=1 &#038;&#038; day <= 30){
			return true;
		} else {
			return false;
		}

		case '2' : // Feb
		if(isLeapYear(year)){
			if(day >=1 &#038;&#038; day <= 29){
				return true;
			}
		} else if(day >=1 &#038;&#038; day <= 28){
			return true;
		} else {
			return false;
		}
		default:
			return false;
	}
}

function isLeapYear(year){  // Checking wdr a year is leap year or not
	if(year % 4 == 0 &#038;&#038; (year % 100 != 0 || year % 400 == 0)){
		return true;
	} else {
		return false;
	}
}
</pre>
<p>The full js file can be dodnloaded from<a href="http://arunmvishnu.googlepages.com/date_validation_js.js"> here</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Javascript+for+validating+a+date&amp;du=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;cn=Javascript%20for%20validating%20a%20date.%0D%0APass%20month%2C%20day%2C%20year%20as%20parameters.%20This%20function%20will%20return%20true%20if%20the%20date%20is%20valid.%0D%0A%0D%0A%2F%2F%20Author%3A%20arunmvishnu.com%0D%0Afunction%20validDate%28month%2C%20day%2C%20year%29%7B%0D%0A%09if%28month%20%3D%3D%270%27%20%7C%7C%20day%20%3D%3D%270%27%20%7C%7C%20year%3D%3D%270%27%29%7B%0D%0A%09%09return%20false%3B%0D%0A%09%7D%0D%0A%0D%0A%09switch%28month%29%7B%0D%0A%09%09case%20%271%27%3A%20%2F%2F%2A%2A%20jan" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;t=Javascript+for+validating+a+date" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Javascript+for+validating+a+date+-+http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html+(via+@arunmvishnu)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;submitHeadline=Javascript+for+validating+a+date&amp;submitSummary=Javascript%20for%20validating%20a%20date.%0D%0APass%20month%2C%20day%2C%20year%20as%20parameters.%20This%20function%20will%20return%20true%20if%20the%20date%20is%20valid.%0D%0A%0D%0A%2F%2F%20Author%3A%20arunmvishnu.com%0D%0Afunction%20validDate%28month%2C%20day%2C%20year%29%7B%0D%0A%09if%28month%20%3D%3D%270%27%20%7C%7C%20day%20%3D%3D%270%27%20%7C%7C%20year%3D%3D%270%27%29%7B%0D%0A%09%09return%20false%3B%0D%0A%09%7D%0D%0A%0D%0A%09switch%28month%29%7B%0D%0A%09%09case%20%271%27%3A%20%2F%2F%2A%2A%20jan&amp;submitCategory=science&amp;submitAssetType=image" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;t=Javascript+for+validating+a+date" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date&amp;summary=Javascript%20for%20validating%20a%20date.%0D%0APass%20month%2C%20day%2C%20year%20as%20parameters.%20This%20function%20will%20return%20true%20if%20the%20date%20is%20valid.%0D%0A%0D%0A%2F%2F%20Author%3A%20arunmvishnu.com%0D%0Afunction%20validDate%28month%2C%20day%2C%20year%29%7B%0D%0A%09if%28month%20%3D%3D%270%27%20%7C%7C%20day%20%3D%3D%270%27%20%7C%7C%20year%3D%3D%270%27%29%7B%0D%0A%09%09return%20false%3B%0D%0A%09%7D%0D%0A%0D%0A%09switch%28month%29%7B%0D%0A%09%09case%20%271%27%3A%20%2F%2F%2A%2A%20jan&amp;source=bugs of a debugger" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Javascript+for+validating+a+date&amp;link=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;t=Javascript+for+validating+a+date" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;title=Javascript+for+validating+a+date" rel="nofollow" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html&amp;n=Javascript+for+validating+a+date&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Farunmvishnu.com%2Fprogramming%2Fjavascript%2Fjavascript-for-validating-a-date.html&amp;linkname=Javascript%20for%20validating%20a%20date"><img src="http://arunmvishnu.com/home/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://arunmvishnu.com/programming/javascript/javascript-for-validating-a-date.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching using disk

Served from: server1.shellboy.com @ 2010-09-10 01:21:15 -->