

function takealook() {
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;');
document.getElementById('entry').innerHTML=('<pre class="brush: html;">'+c+'</pre>');



newwindow.document.close();
SyntaxHighlighter.highlight()
}


