2002-10-10 07:21:32 +00:00
|
|
|
<!--
|
|
|
|
#################################################################################
|
|
|
|
##
|
|
|
|
## HTML Text Editing Component for hosting in Web Pages
|
|
|
|
## Copyright (C) 2001 Ramesys (Contracting Services) Limited
|
|
|
|
##
|
|
|
|
## This library is free software; you can redistribute it and/or
|
|
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
|
|
## License as published by the Free Software Foundation; either
|
|
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This library is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
## Lesser General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU LesserGeneral Public License
|
|
|
|
## along with this program; if not a copy can be obtained from
|
|
|
|
##
|
|
|
|
## http://www.gnu.org/copyleft/lesser.html
|
|
|
|
##
|
|
|
|
## or by writing to:
|
|
|
|
##
|
|
|
|
## Free Software Foundation, Inc.
|
|
|
|
## 59 Temple Place - Suite 330,
|
|
|
|
## Boston,
|
|
|
|
## MA 02111-1307,
|
|
|
|
## USA.
|
|
|
|
##
|
|
|
|
## Original Developer:
|
|
|
|
##
|
|
|
|
## Austin David France
|
|
|
|
## Ramesys (Contracting Services) Limited
|
|
|
|
## Mentor House
|
|
|
|
## Ainsworth Street
|
|
|
|
## Blackburn
|
|
|
|
## Lancashire
|
|
|
|
## BB1 6AY
|
|
|
|
## United Kingdom
|
|
|
|
## email: Austin.France@Ramesys.com
|
|
|
|
##
|
|
|
|
## Home Page: http://richtext.sourceforge.net/
|
|
|
|
## Support: http://richtext.sourceforge.net/
|
|
|
|
##
|
|
|
|
#################################################################################
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name=vs_targetSchema content="HTML 4.0">
|
|
|
|
<meta name="GENERATOR" content="Microsoft Visual Studio 7.0">
|
|
|
|
<LINK rel="stylesheet" type="text/css" href="dialog.css">
|
2002-10-12 03:55:50 +00:00
|
|
|
<title>Insert Smiley Icon </title>
|
2002-10-10 07:21:32 +00:00
|
|
|
<script language="JavaScript">
|
|
|
|
function attr(name, value) {
|
|
|
|
if (!value || value == "") return "";
|
|
|
|
return ' ' + name + '="' + value + '"';
|
|
|
|
}
|
|
|
|
function insert() {
|
|
|
|
var img = window.event.srcElement;
|
|
|
|
if (img) {
|
|
|
|
var src = img.src.replace(/^[a-z]*:[/][/][^/]*/, "");
|
2002-10-12 03:55:50 +00:00
|
|
|
window.returnValue = '<IMG BORDER=0 HEIGHT=15 WIDTH=15 ALIGN=ABSMIDDLE SRC=' + src + '>';
|
2002-10-10 07:21:32 +00:00
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function cancel() {
|
|
|
|
window.returnValue = null;
|
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body topmargin="0" leftmargin="0" style="border: 0; margin: 0;" scroll="no">
|
|
|
|
<table class="dlg" cellpadding="0" cellspacing="2" width="100%" height="100%">
|
2002-10-12 03:55:50 +00:00
|
|
|
<tr><td><table width="100%"><tr><td nowrap>Choose an icon to insert</td><td valign="middle" width="100%"><hr width="100%"></td></tr></table></td></tr>
|
2002-10-10 07:21:32 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<table border="0" align="center" cellpadding="5">
|
|
|
|
<tr valign="top">
|
|
|
|
<td>
|
|
|
|
<table border="0" align="center">
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img border="0" hspace="10" src="../../pix/s/smiley.gif" onclick="insert()" width="15" height="15"></td>
|
2002-10-10 07:21:32 +00:00
|
|
|
<td>smile</td>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><FONT FACE=Courier>:-)</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/biggrin.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>big grin</td>
|
|
|
|
<td><FONT FACE=Courier>:-D</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/wink.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>wink</td>
|
|
|
|
<td><FONT FACE=Courier>;-)</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/mixed.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>mixed</td>
|
|
|
|
<td><FONT FACE=Courier>:-/</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/thoughtful.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>thoughtful</td>
|
|
|
|
<td><FONT FACE=Courier>V-.</FONT></td>
|
|
|
|
</tr>
|
2002-10-10 07:21:32 +00:00
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/tongueout.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>tongue out</td>
|
|
|
|
<td><FONT FACE=Courier>:-P</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/cool.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>cool</td>
|
|
|
|
<td><FONT FACE=Courier>B-)</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/approve.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>approve</td>
|
|
|
|
<td><FONT FACE=Courier>^-)</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/wideeyes.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>wide eyes</td>
|
|
|
|
<td><FONT FACE=Courier>8-)</td>
|
|
|
|
</tr>
|
2002-10-12 04:04:59 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/surprise.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>surprise</td>
|
|
|
|
<td><FONT FACE=Courier>8-o</td>
|
|
|
|
</tr>
|
2002-10-10 07:21:32 +00:00
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<table border="0" align="center">
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/sad.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>sad</td>
|
|
|
|
<td><FONT FACE=Courier>:-(</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/shy.gif" onclick="insert()" width="15" height="15"></td>
|
2002-10-10 07:21:32 +00:00
|
|
|
<td>shy</td>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><FONT FACE=Courier>8-.</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/blush.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>blush</td>
|
|
|
|
<td><FONT FACE=Courier>:-I</td>
|
|
|
|
</tr>
|
2002-10-10 07:21:32 +00:00
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/kiss.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>kisses</td>
|
|
|
|
<td><FONT FACE=Courier>:-X</td>
|
|
|
|
</tr>
|
2002-10-12 04:04:59 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/clown.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>clown</td>
|
|
|
|
<td><FONT FACE=Courier>:o)</td>
|
|
|
|
</tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<tr>
|
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/blackeye.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>black eye</td>
|
|
|
|
<td><FONT FACE=Courier>P-|</td>
|
|
|
|
</tr>
|
2002-10-10 07:21:32 +00:00
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/angry.gif" onclick="insert()" width="15" height="15"></td>
|
2002-10-10 07:21:32 +00:00
|
|
|
<td>angry</td>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><FONT FACE=Courier>8-[</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/dead.gif" onclick="insert()" width="15" height="15"></td>
|
2002-10-10 07:21:32 +00:00
|
|
|
<td>dead</td>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><FONT FACE=Courier>xx-P</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/sleepy.gif" onclick="insert()" width="15" height="15"></td>
|
2002-10-10 07:21:32 +00:00
|
|
|
<td>sleepy</td>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><FONT FACE=Courier>|-.</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2002-10-12 03:55:50 +00:00
|
|
|
<td><img alt border="0" hspace="10" src="../../pix/s/evil.gif" onclick="insert()" width="15" height="15"></td>
|
|
|
|
<td>evil</td>
|
|
|
|
<td><FONT FACE=Courier>}-]</td>
|
2002-10-10 07:21:32 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr><td><table width="100%"><tr><td valign="middle" width="90%"><hr width="100%"></td></tr></table></td></tr>
|
|
|
|
<tr><td align="right">
|
|
|
|
<input type="button" value="Close" onclick="cancel()"></td></tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</html>
|