var a = document.createElement("a");
a.style.color = "white";
a.style.backgroundColor = "#666666";
a.style.textDecoration = "none";
a.style.fontSize = "90%";
a.href = "javascript:c=unescape(document.documentElement.innerHTML);c=c.replace(/&/g,'&amp;');c=c.replace(/</g,'&lt;');c=c.replace(/>/g,'&gt;');c=c.replace(/</g,'&amp;lt;');c=c.replace(/>/g,'&amp;gt;');c=c.replace(/href=\"(.*?)\"/g,'href=\"<a href=\"$1\">$1</a>\"');c=c.replace(/src=\"(.*?)\"/g,'src=\"<a href=\"$1\">$1</a>\"');document.write('<html><head><title>Source of Page</title></head><body><div align=\"center\"><a href=\"#\" onclick=\"history.back();return false;\">Back</a></div><pre>' + c + '</pre></body></html>');";
a.appendChild(document.createTextNode('View Page Source'));
document.body.appendChild(a);