// proxyURL is a local proxy that is expected to understand HttpPost requests
// with a parameter named url whose value is the remote URL to retrieve.
var proxyURL = '/redirect.php';

// lekaneServerURL is the URL and port that the Lekane TalkNow server is running on.
var lekaneServerURL = 'http://www.lekane.net:8080';

// localTalkNowURL is the relative URL to the talknow resources on the customer webserver
var localTalkNowURL = '';

// This is the search pattern to target specific users in a domain that have a group attribute of 'LekaneWeb'
var talkNowSearchPattern = 'ua.domain=Lekane,ua.group=LekaneWeb'; 

// This is the deploymentId unique identifier
var talkNowDeploymentId = 'Lekane';

// Entity identifier (pro-active entity identifier)
var talkNowEntityId = 'LekaneWeb';

// Default language for TalkNow fragments
var talkNowLang = 'en';

//This is the data that is sent over as part of the call request
var talkNowData = new Array();
talkNowData[0] = new Array();
talkNowData[1] = new Array();
var talkNowMetadata = new Array();
talkNowMetadata[0] = new Array( 'MdRequestType' );
talkNowMetadata[1] = new Array( 'notes' );

