Cita:  
					Iniciado por CHuLoSoY  P: Como deshabilito la selección de un texto?
    El código de CHuLoSoy puede ser mejorado: 
 Código HTML:
 <html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Hecho por MorZilla</title>
<script type="text/javascript">
document.onselectstart = new Function("return false");
// Para IE
</script>
<style type="text/css">
* {
-moz-user-select: none; /* Para navegadores Mozilla */
user-select: none; /* Posiblemente en futuros navegadores */
}
</style>
<body>
<h1>¡MorZilla!</h1>
</body>
</html>  Ojalá les sirva!