I see what you mean. Right-clicking doesn't work and therefore you can't save or cut/past any text.
The site uses JavaScript techniques to hide all the HTML from the user. The code is generated on the fly by your Java Interpreter at display time only. So if you try to look at the code all you will see is something like this:
eval(unescape(%68%70%5F%6F%6B%3D%74.....));
This evaluates at Java runtime to what ultimately you see on the screen. Check this site out which describes exactly how the author is "hiding" his source:
http://www.siteexperts.com/tips/hideit/index.asp
The technique to hide the code is clever. It isn't really hidden...everything on merelyge is mearly escaped. You can use utilities to suck up the site such as wget in Linux and then look at the resulting code and then wget each of the links inside. Then you can take whatever is between the "unescape" statement as above and cut/paste into the following site:
http://scriptasylum.com/tutorials/en...de-decode.html
This will then reverse escape all the code to the original HTML/JavaScript. It isn't simple but at least you'll be able to unobfiscate the site a bit.
It is probably much easier though to ask the author for permission to copy and credit their work.
Good luck
Casey