if (typeof(lpUASunit)=='undefined')
	var lpUASunit = 'ctuonline-general';

if (typeof(lpUASlanguage)=='undefined')
	var lpUASlanguage = 'english';
	
//Define the path to the button and invitation images
//var lpUASimagesPath = '/Schools/CTU/Images/LivePerson/ctuonline-general-english/';
var lpUASimagesPath = '/Schools/CTU/Images/LivePerson/';

//Define the invitation position from the left and top of the browser window
if (typeof(lpUASinvitePositionX)=='undefined')
	var lpUASinvitePositionX = 50;
if (typeof(lpUASinvitePositionY)=='undefined')
	var lpUASinvitePositionY = 50;

//Define the invitation ALT properties
//var lpUASbuttonTitle = 'Live Chat';
var lpCustomInvitationTitle='Invitation popup window for live chat with a representative';
var lpCustomInvitationCloseTitle='Close chat invitation';

var lpUAScontext = document.title;

//Define text for the different operator states (Note: text can be an empty string)
var lpUASdynamicTextLinkInitialText = 'Chat Live';
var lpUASdynamicTextLinkOnlineText = 'Chat Live';
var lpUASdynamicTextLinkOccupiedText = 'Chat Live';
var lpUASdynamicTextLinkOfflineText = 'Chat Live';

//Optional - Define styles for text link in this function
function lpUpdateDynamicTextLinkStyle(state){
	lpUAStextLinkObject.style.cursor = 'default';
	lpUAStextLinkObject.style.textDecoration = 'none';
	//lpUAStextLinkObject.style.color = 'black';
	//lpUAStextLinkObject.style.font = '11px Arial';
	
	if (state == 'Online')  {
		lpUAStextLinkObject.style.cursor=hcPointerString;
		//Set any style properties for Online Text here, ex:
		//lpUAStextLinkObject.style.textDecoration = 'underline';
		//lpUAStextLinkObject.style.color = 'blue';
	} else if (state == 'Occupied') {
		//Set any style properties for Occupied Text here
	} else if (state == 'Offline') {
		//Set any style properties for Offline Text here
	} else if (state == 'Initial') {
		//Set any style properties for Initial Text here
	}
}