1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# --
# AgentLookup.dtl - provides HTML form for AgentLookup
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AgentLookup.dtl,v 1.2 2005/09/04 16:41:01 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
<!-- start Spelling form -->
<script language="JavaScript" type="text/javascript">
<!--
function updateMessage(x)
{
if (parent.opener.closed) {
alert('$Text{"The message being composed has been closed. Exiting."}');
this.close();
return;
}
if (!parent.opener.document.compose) {
alert('$Text{"This window must be called from compose window"}');
this.close();
return;
}
parent.opener.document.compose.$Data{"What"}.value = x
this.close();
}
//-->
</script>
<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="1">
<tr>
<td align="left" class="mainhead">
$Env{"Box0"}$Text{"Lookup"}$Env{"Box1"}
</td>
</tr>
<tr>
<td align="left" valign="top" class="mainbody">
<form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data" name="lookup">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Source" value="$Data{"Source"}">
<input type="hidden" name="What" value="$Data{"What"}">
<hr>
<table border="0" cellspacing="0" cellpadding="1">
<tr>
<td>
<input type="text" name="Search" value="$Data{"Search"}" size="40">
<input class="button" type="submit" value="$Text{"Search"}">
<input class="button" type="reset" value="$Text{"Reset"}">
<input class="button" type="button" onclick="window.close();" value="$Text{"Cancel"}">
</td>
</tr>
</table>
<table border="0" cellspacing="2" cellpadding="2">
$Data{"Table"}
</table>
<hr>
</td>
</tr>
</table>
<!-- end Spelling form -->
|