# --
# AgentBook.dtl - provides HTML form for AgentSpelling
# Copyright (C) 2001-2009 OTRS AG, http://otrs.org/
# --
# $Id: AgentBook.dtl,v 1.11 2009/02/16 11:07:25 tr Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --

<!-- start Spelling form -->
<script language="JavaScript" type="text/javascript">
<!--

function updateMessage() {
    if (parent.opener.closed) {
        alert('$JSText{"The message being composed has been closed.  Exiting."}');
        this.close();
        return;
    }

    if (!parent.opener.document.compose) {
        alert('$JSText{"This window must be called from compose window"}');
        this.close();
        return;
    }

    parent.opener.document.compose.To.value = document.book.To.value
    parent.opener.document.compose.Cc.value = document.book.Cc.value
    parent.opener.document.compose.Bcc.value = document.book.Bcc.value

    this.close();
}

//-->
</script>

<script language="JavaScript" type="text/javascript">
<!--

function AddToAddress(x) {
    if (document.book.To.value) {
        document.book.To.value = document.book.To.value + ', ';
    }
    document.book.To.value = document.book.To.value + x;
}

function AddCcAddress(x) {
    if (document.book.Cc.value) {
        document.book.Cc.value = document.book.Cc.value + ', ';
    }
    document.book.Cc.value = document.book.Cc.value + x;
}

function AddBccAddress(x) {
    if (document.book.Bcc.value) {
        document.book.Bcc.value = document.book.Bcc.value + ', ';
    }
    document.book.Bcc.value = document.book.Bcc.value + x;
}

//-->
</script>

<table border="0" width="100%" cellspacing="0" cellpadding="3">
  <tr>
    <td class="mainhead">
      $Env{"Box0"}$Text{"Address Book"}$Env{"Box1"}
    </td>
  </tr>
  <tr>
    <td class="mainbody">
      <form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data" name="book">
        <input type="hidden" name="Action" value="AgentBook"/>
        <table border="0" cellspacing="0" cellpadding="1">
          <tr>
            <td>$Text{"To"}:</td><td> <input type="text" name="To" value="$QData{"To"}" size="80"/></td>
          </tr>
          <tr>
            <td>$Text{"Cc"}:</td><td> <input type="text" name="Cc" value="$QData{"Cc"}" size="80"/></td>
          </tr>
          <tr>
            <td>$Text{"Bcc"}:</td><td> <input type="text" name="Bcc" value="$QData{"Bcc"}" size="80"/></td>
          </tr>
        </table>
        <br/>
        <input class="button" type="button" onclick="updateMessage();" value="$Text{"Done"}"/>
        <i>($Text{"Return to the compose screen"})</i>
        <input class="button" type="button" onclick="window.close();" value="$Text{"Cancel"}"/>
        <i>($Text{"Discard all changes and return to the compose screen"})</i>
        <hr>
        <table border="0" cellspacing="0" cellpadding="1">
          <tr>
            <td>
              <input type="text" name="Search" value=""/>
              <input class="button" type="submit" value="$Text{"Search"}"/>
              <input class="button" type="reset" value="$Text{"Reset"}"/>
            </td>
          </tr>
        </table>
        <table width="100%" border="0" cellspacing="2" cellpadding="2">
<!-- dtl:block:Row -->
          <tr>
            <td>$QData{"Name"}</td>
            <td><a href="" onclick="AddToAddress('$QData{"Email"}'); return false;">$Text{"To"}</a></td>
            <td><a href="" onclick="AddCcAddress('$QData{"Email"}'); return false;">$Text{"Cc"}</a></td>
            <td><a href="" onclick="AddBccAddress('$QData{"Email"}'); return false;">$Text{"Bcc"}</a></td>
          </tr>
<!-- dtl:block:Row -->
        </table>
      </form>
      <hr>
    </td>
  </tr>
</table>
<!-- end Spelling form -->
