// JavaScript Document

// funzione per la finestra della chat
window.onload = function()
{
	window.setTimeout("ShowDiv()", 3000);
}

function ShowDiv()
{
	var el = document.getElementById("chat");
	if (el)
		el.style.display = "block";
}

function closeDiv()
{
	document.getElementById("chat").style.display="none";
	//chat.style.display = 'none'
}