<!--
// display the phplive chat redirect page
// redirect_url is the chat_passthru page
function launch_support_chat(redirect_url) {

  	var chat_width = 450 ;
	var chat_height = 360 ;
	var date = new Date();

	leWindow = window.open( redirect_url, date.getTime(), 'scrollbars=no,menubar=no,resizable=0,location=no,screenX=50,screenY=100,width='+chat_width+',height='+chat_height+'' ) ;
	leWindow.focus() ;
}
//-->