document.oncontextmenu = function(){return false}


// Avoid IE text selection
document.onselectstart=function(){
		if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password")
		return false
		else return true;
	};

// Avoid Firefox text selection
if (window.sidebar){
	document.onmousedown=function(e){
	var obj=e.target;
	if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD")
	return true;
	/*else if (obj.tagName=="BUTTON"){
	return true;
	}*/
	else
	return false;
	}
}

