34 lines
908 B
HTML
34 lines
908 B
HTML
<HTML>
|
|
|
|
<!--
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001 Plain Black Software.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
-->
|
|
|
|
<HEAD><TITLE>ShowMe Viewer</TITLE>
|
|
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<script language="JavaScript">
|
|
var text = window.opener.getShowMeText();
|
|
var re = /\n/g;
|
|
text = text.replace(re,"<br>");
|
|
document.write(text);
|
|
</script>
|
|
|
|
<form>
|
|
<input type="button" onClick="window.close()" value="Close this window!">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|