/* 
Project Name : www.kooodu.com.,- Thamizh Studio
Version : 1
Author :Thamizh Studio
Created on : 23/11/2009
File Description : Koodu Content script
Last Modified on : 
Creeted by : Guna & Arun
Modified by :
*/

function disableSelection(target)
{
	if (typeof target.onselectstart!="undefined") // For IE 
		target.onselectstart=function()
		{
			return false
		}
	else if (typeof target.style.MozUserSelect!="undefined") // For Firefox
		target.style.MozUserSelect="none"
	else //All other
		target.onmousedown=function()
		{
			return false
		}
	target.style.cursor = "default"
}
