function do_texpopup(latexstring, thetag) {
        var lefttag = "["+thetag+"]<br />\n";
        var righttag = "<br />[/"+thetag+"]";

        newwind = window.open("","latex","scrollbars=yes,resizable=yes,width=600,height=300");
        newwind.document.write('<html>\n');
        newwind.document.write('<head>\n');
        newwind.document.write('<title>LaTeX Source</title>\n');
        newwind.document.write('<style type="text/css">\n');
        newwind.document.write('<!--\n');
        newwind.document.write('body, html { margin: 0px; padding: 15px; background-color: #E5E5FA; }\n');
        newwind.document.write('div { font-family: Verdana, Arial, sans-serif; font-size: 12px; }\n');
        newwind.document.write('div#content { height: 100%; padding: 4px; border: 1px solid #BABACF; margin: -5px; background-color: #F5F5FF; }\n');
        newwind.document.write('a { text-decoration: none; }\n');
        newwind.document.write('a:hover { text-decoration: underline; }\n');
        newwind.document.write('//-->\n');
        newwind.document.write('</style></head>\n');
        newwind.document.write('<body>\n');
        newwind.document.write('<div id="content">\n');
        newwind.document.write('The following code was used to generate the image you clicked on:<br /><br />\n');
        newwind.document.write('<div style="white-space: pre-wrap; font-family: monospace; font-size: 12px; color: #0000AA; width: 100%;">');
        newwind.document.write('<span style="color: #AA0000">'+lefttag+'</span>'+latexstring+'<span style="color: #AA0000">'+righttag+'</span>');
        newwind.document.write('</div></div></body></html>');
        newwind.document.close();
}

