function verifiCookieLoad() {
    if (getCookie(chat_cookie) == null)
    {
    	setCookie(chat_cookie,'1','', chat_cookie_path,chat_cookie_domain,'');
    	chat_activo = true;
   	}
   	else
   	{
   		chat_activo = false;
    }
}
function verifiCookieUnload() {
	if (chat_activo)
	{
		deleteCookie(chat_cookie,chat_cookie_path,chat_cookie_domain);
		chat_activo = false;
	}
}

function abrirMensajeria(){
	if (chat_activo)
	{
		collapse2.slideit()
	}
	else
	{
		alert(chat_duplicado);
	}
}

function resetMensajeria()
{
	deleteCookie(chat_cookie,chat_cookie_path,chat_cookie_domain);
	chat_activo = false;
	alert(chat_reiniciado);
	window.location.reload();
}
