This a really obfuscated version of:
document.writeln("Contact");
I assume it is obfuscated this much to avoid spammers. But of course spambots could just render the page with Webkit and traverse the DOM for email addresses ... ;)
So.. how to deobfuscate?
- Go to http://jsbeautifier.org/
- Paste the source and beautify it
- Edit the function
f(x) so it does console.log(o) instead of return o
- Execute the modified code and beautify its output.
- Repeat steps 2-4 until it is readable.