function setChat() { if( 1 ) { if( chatAvailable ) $('#livechat')[0].className = 'callchat'; // both buttons else $('#livechat')[0].className = 'callonly'; // call button only ActivateChat( $('#btn_LiveChat')[0], chatButtons.live_chat ); ActivateChat( $('#btn_CallMe')[0], chatButtons.call_me ); } else $('#livechat')[0].className = 'calloff'; // no buttons (default setting) } function ActivateChat(e,o) { if(!e) return; e.style.cursor = "pointer"; if( o.up ) e.onmouseout = function(){ this.style.backgroundPosition = o.up }; if(o.hov) { e.onmouseup = function(){ this.style.backgroundPosition = o.hov }; e.onmouseover = function(){ this.style.backgroundPosition = o.hov }; } if(o.dwn) e.onmousedown = function(){ this.style.backgroundPosition = o.dwn }; if(o.url) e.onclick = function(){ location=o.url }; if(o.fn) e.onclick = function(){ o.fn() }; } var chatButtons = { live_chat: { up: '0px -49px', hov: '-92px -49px', fn: function(){ openChat('sales'); } }, call_me: { up: '0px 0px', hov: '-92px 0px', fn: function(){ popUpWin('/html/clicktocall.php','standard',300,300); } } } //------------------- Open New Window -------------------// var newWindow = null; function closeWin(){ if (newWindow != null){ if(!newWindow.closed) newWindow.close(); } } function popUpWin(url, type, strWidth, strHeight){ closeWin(); if (type == "fullScreen"){ strWidth = screen.availWidth - 10; strHeight = screen.availHeight - 160; } var tools=""; if (type == "standard" || type == "fullScreen") tools = "resizable=no,toolbar=no,location=no,scroll=yes,scrollbars=yes,menubar=no,width="+strWidth+",height="+strHeight+",top=135,left=210"; if (type == "console") tools = "resizable=no,toolbar=no,location=no,directories=no,status=no,scroll=no,scrollbars=no,menubar=no,width="+strWidth+",height="+strHeight+",left=0,top=0"; newWindow = window.open(url, 'newWin', tools); newWindow.focus(); } $(document).ready( setChat );