  
    if (typeof(lpUASunit)=='undefined') 
      var lpUASunit = 'rs-sales-se';
    
    if (typeof(lpUASlanguage)=='undefined')
      var lpUASlanguage = 'swedish';
    
    var lpUASimagesPath = '/content/liveperson/chat_deployment_local-rackspace/images';
    
    //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 button and invitation alt text properties
    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 = '';
    var lpUASdynamicTextLinkOnlineText = 'Start Live Chat';
    var lpUASdynamicTextLinkOccupiedText = '';
    var lpUASdynamicTextLinkOfflineText = '';
    
    //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
      }
    }
  

