// Team A
<!--
// PHPLive compatible popper.
var unique = dounique() ;
var chat_width = 450 ;
var chat_height = 360 ;
var url = escape( location.toString() ) ;

function dounique() {
  var date = new Date() ;
  return date.getTime() ;
}
function launch_support() {
	//start_timer( 2 ) ;
	var request_url = "https://server.iad.liveperson.net/hc/39566972/?cmd=file&file=visitorWantsToChat&site=39566972&byhref=1&SESSIONVAR!skill=Team%20A&imageUrl=https://server.iad.liveperson.net/hcp/Gallery/ChatButton-Gallery/English/General/3a" + '&referrer=' + url;
	var newwin_chat = window.open(request_url, unique, 'scrollbars=no,menubar=no,resizable=0,location=no,screenX=50,screenY=100,width='+chat_width+',height='+chat_height+'' ) ;
	if ( newwin_chat )
	{
		newwin_chat.focus() ;
		DoClose() ;
		chatwindow_loaded = 1 ;
	}
}

//-->