
  
  
/*
/* The functions in here create a pop-up window
/*  or dynamically place a button for Live Chat
*********************************************************/

function popUp(URL, width, height) {
  var wHeight = height;
  var wWidth = width;
  var day = new Date();
  var id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + wWidth + ",height=" + wHeight + ",left = 100,top = 100');");
}


/* add Live Chat Button to Footer
********************************************************/
function addLCFooter() {
 linkLC=document.createElement('a');
   var parent = document.getElementById('footer-details');
    parent.appendChild(linkLC);

   linkLC.setAttribute('href','/page/1/live-chat.jsp');
   linkLC.setAttribute('title','Live Chat');
   linkLC.id = 'liveChat'
    pic=document.createElement('img');
    pic.src = "/media/image/1/livechatoperator.gif";
   // add the text as a child of the link
    linkLC.appendChild(pic);


  linkLC.onclick = function(){
		popUp(this.href, "550", "500");
		return false;
	}
}


/* add Live Chat Button to Sidebar
********************************************************/
function addLCSidebar() {
  // create a new link and a text
    linkLC=document.createElement('a');

   var parent = document.getElementById('border-visitorInfo');
    var h2Getter = parent.getElementsByTagName("h2");
    var buttonContainer = h2Getter[0];
    buttonContainer.appendChild(linkLC);

   linkLC.setAttribute('href','/page/1/live-chat.jsp');
   linkLC.setAttribute('title','Live Chat');
   linkLC.id = 'liveChat2'

    pic=document.createElement('img');
    pic.src = "/media/image/1/livechatoperatorwhite.gif";
   // add the text as a child of the link
   linkLC.appendChild(pic);



  linkLC.onclick = function(){
		popUp(this.href, "550", "500");
		return false;
	}
}
