// These scripts are meant to be called from items int he RelatedLinks controls.
// For instance, if you want a link to open the LivePerson Chat with a Heart Nurse 
//window, set the 'url' for the related item in KAON to "javascript: openHeartChatWindow()"

function openLivePersonChatWindow(skill){
    window.open('http://sales.liveperson.net/hc/19357552/?cmd=file&file=visitorWantsToChat&site=19357552&SESSIONVAR!skill=' + skill + '&referrer='+escape(document.location),'chat19357552','width=472,height=320,resizable=yes');
}
function openHeartChatWindow(){
    openLivePersonChatWindow("cc-heart-chat-english");
    // window.open('http://sales.liveperson.net/hc/19357552/?cmd=file&file=visitorWantsToChat&site=19357552&SESSIONVAR!skill=cc-heart-chat-english&referrer='+escape(document.location),'chat19357552','width=472,height=320,resizable=yes');
}
