2009-06-26 14:36:40 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
// <![CDATA[
|
2009-07-11 16:26:05 +00:00
|
|
|
function hide_qr()
|
2009-06-26 14:36:40 +00:00
|
|
|
{
|
2009-07-11 14:28:43 +00:00
|
|
|
dE('qr_editor_div');
|
|
|
|
dE('qr_showeditor_div');
|
2009-06-26 14:36:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-08-14 08:42:46 +00:00
|
|
|
|
2009-07-11 14:28:43 +00:00
|
|
|
|
2009-08-14 08:42:46 +00:00
|
|
|
function init_qr()
|
|
|
|
{
|
|
|
|
dE('qr_showeditor_div');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
onload_functions.push('init_qr();');
|
2009-06-26 14:36:40 +00:00
|
|
|
// ]]>
|
|
|
|
</script>
|
2009-08-14 08:42:46 +00:00
|
|
|
<noscript>
|
|
|
|
<form method="post" action="{U_QR_ACTION}">
|
|
|
|
<div class="panel" id="qr_ns_editor_div">
|
|
|
|
<div class="inner"><span class="corners-top"><span></span></span>
|
|
|
|
<div class="content">
|
|
|
|
<h2>{L_QUICKREPLY}</h2>
|
|
|
|
<fieldset class="fields1">
|
|
|
|
<dl style="clear: left;">
|
|
|
|
<dt><label for="subject">{L_SUBJECT}:</label></dt>
|
|
|
|
<dd><input type="text" name="subject" id="subject-ns" size="45" maxlength="64" tabindex="2" value="{SUBJECT}" class="inputbox autowidth" /></dd>
|
|
|
|
</dl>
|
|
|
|
<div id="message-box-ns">
|
|
|
|
<textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="submit-buttons">
|
|
|
|
{S_FORM_TOKEN}
|
|
|
|
{QR_HIDDEN_FIELDS}
|
|
|
|
<input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1" />
|
|
|
|
<input type="submit" accesskey="f" tabindex="7" name="full_editor" value="{L_FULL_EDITOR}" class="button2" />
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
<span class="corners-bottom"><span></span></span></div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</noscript>
|
2009-06-26 14:36:40 +00:00
|
|
|
<form method="post" action="{U_QR_ACTION}">
|
2009-08-14 08:42:46 +00:00
|
|
|
<div class="panel" style="display: none" id="qr_editor_div">
|
2009-06-26 14:36:40 +00:00
|
|
|
<div class="inner"><span class="corners-top"><span></span></span>
|
|
|
|
<div class="content">
|
|
|
|
<h2>{L_QUICKREPLY}</h2>
|
|
|
|
<fieldset class="fields1">
|
|
|
|
<dl style="clear: left;">
|
|
|
|
<dt><label for="subject">{L_SUBJECT}:</label></dt>
|
|
|
|
<dd><input type="text" name="subject" id="subject" size="45" maxlength="64" tabindex="2" value="{SUBJECT}" class="inputbox autowidth" /></dd>
|
2009-07-10 15:16:09 +00:00
|
|
|
</dl>
|
2009-06-26 14:36:40 +00:00
|
|
|
<div id="message-box">
|
2009-07-10 15:16:09 +00:00
|
|
|
<textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
|
2009-06-26 14:36:40 +00:00
|
|
|
</div>
|
2009-07-11 16:26:05 +00:00
|
|
|
</fieldset>
|
2009-06-26 14:36:40 +00:00
|
|
|
<fieldset class="submit-buttons">
|
|
|
|
{S_FORM_TOKEN}
|
2009-07-15 22:28:26 +00:00
|
|
|
{QR_HIDDEN_FIELDS}
|
2009-06-26 14:36:40 +00:00
|
|
|
<input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1" />
|
2009-08-12 09:25:57 +00:00
|
|
|
<input type="submit" accesskey="f" tabindex="6" name="full_editor" value="{L_FULL_EDITOR}" class="button2" />
|
2009-06-26 14:36:40 +00:00
|
|
|
</fieldset>
|
2009-08-14 09:06:34 +00:00
|
|
|
<a href="" class="right-box up" onclick="hide_qr(); return false;" title="{L_COLLAPSE_QR}">{L_COLLAPSE_QR}</a>
|
2009-06-26 14:36:40 +00:00
|
|
|
</div>
|
|
|
|
<span class="corners-bottom"><span></span></span></div>
|
|
|
|
</div>
|
2009-07-10 15:16:09 +00:00
|
|
|
<div class="panel" style="display: none" id="qr_showeditor_div" >
|
2009-06-26 14:36:40 +00:00
|
|
|
<div class="inner"><span class="corners-top"><span></span></span>
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<fieldset class="submit-buttons">
|
2009-07-11 16:26:05 +00:00
|
|
|
<input type="submit" name="show_qr" tabindex="1" class="button2" value="{L_SHOW_QR}" onclick="hide_qr();return false;"/>
|
2009-06-26 14:36:40 +00:00
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
<span class="corners-bottom"><span></span></span></div>
|
|
|
|
</div>
|
|
|
|
</form>
|