// No Boton Derecho
document.oncontextmenu = function() 
{
	return false;	
}
// No seleccionar texto
window.onload = function() 
{
  document.onselectstart = function() {return false;} // ie
  //document.onmousedown = function() {return false;} // mozilla
}