function live8button() { var opOnline = true; // buttons var onlineImage = "https://www.cybernetman.com/images/icons/liveSupport_onLine.jpg"; var offLineImage = "https://www.cybernetman.com/images/icons/liveSupport_offLline.jpg"; // popup settings var popupWidth = 500; var popupHeight = 450; var popupSettings = 'width=' + popupWidth + ',height=' + popupHeight; var uniqueKey = new Date().getTime(); // url var chatUrl = "https://www.autojini.com/live8guest/startChat.cfm?clientId=50104&departmentId=0&key="+ uniqueKey; var popupUrl = "javascript:window.open('" +chatUrl + "', 'live8guest', '" + popupSettings +"');"; // write var live8image = offLineImage; if (opOnline) { live8image = onlineImage; } document.write(''); } live8button();