Oh-kay. Let's see.
Encrypting your code is:
a) pointless
b) selfish
c) impossible to do securely.
Pointless because you never really need to encrypt your scripts except for security reasons (password, &c.) which shouldn't be done client-side anyway;
Selfish because it restricts the freedom of the source, the thing that made HTML so popular in the first place;
Impossible because if the browser can understand it, it's already been decrypted at some point along the way, so the user can just ask the browser to tell what it sees:
Code:
javascript:alert(document.body.innerHTML);
in the address bar.
Bookmarks