//This file contains example DT configuration for your website.
//The file should be copied to your preferred location
//and made available for all pages that reference DT call center.
//Each of these pages should contain code similar to this:
/*
<html>
  <head>
    <script src="callCenter.js"></script>
  </head>
  <body>
    <a href="javascript:void(0)" onClick="javascript:startCallCenter()">Call Center</a>
  </body>
</html>
*/


  //location of DT runtime (relative to files sourcing this script)
  //edit this value only
  var callcenterLocation="/ccss-cc";

  //inserts DT runtime (function ccss_ccOpen() provided by DT vendor)
  document.write("<script src="+callcenterLocation+"/ccss-cc.js></script>");

  //starts DT (using function from inserted script)
  //use this call on your website
  function startCallCenter()
  {
    return ccss_ccOpen(callcenterLocation);
  } // startCallCenter ____________________________________________________
  