// JavaScript Document

function show(l){
e=document.getElementById('popupchat');
e.style.visibility=l;
e=document.getElementById('overlay');
e.style.visibility=l;
t=setTimeout("showCerrar('visible')",500);
}

function hideCerrar(l){
clearTimeout(t);
showCerrar('hidden');
}

function showMicrositios(l){
t=setTimeout("showCerrar('visible')",1500);
}

function showCerrar(l){
e=document.getElementById('popupcerrar');
e.style.visibility=l;
}

function show2(l){
e=document.getElementById('popup');
e.style.visibility=l;
e=document.getElementById('overlay2');
e.style.visibility=l;
}


