function AbrirChat(userName)
{
	EjecutarRequestAjax(
		"/proxyasistenciaenlinea.asp",
		"get",
		"",
		AbrirChatExito,
		AbrirChatError);
}

function AbrirChatExito(resultado)
{
	// var pathAppChat = 'http://kingx./webchatp10/views/default.aspx?token=';
	var pathAppChat = 'http://www.plataforma10.com/webchatp10/views/default.aspx?token=';
	
	NewWin(pathAppChat + resultado.responseText,'','menubar=no,scrollbars=yes,width=760,height=464');	
}

function AbrirChatError(resultado)
{
	alert( "Ocurrió un error al intentar abrir el chat." );
}