﻿window.setInterval("CheckForIncomingMessages()", 5000);

function CheckForIncomingMessages()
{
	if (typeof (online)=="undefined"||online==0||typeof(ChannelContent)=="undefined")	return;
	ChatBox.CheckForIncomingMessages(cb_cm);
}

function cb_cm(t)
{
	if (!t)	return;
	var r = t.value;
	if (!r || !r.Rows || r.Rows.length==0) return;
	var p=null, showalert=false;

	for(i=0; i < r.Rows.length; i++)
	{
		p=window.open(root + "/UserInterface/Public/ChatBox.Aspx?Company="+r.Rows[i].MemberID, r.Rows[i].MemberID, 'width=320, height=400, location=false,address=false');
		if (!p)	showalert=true;
	}
	if (showalert)
		alert("Lütfen Popup Blocker'ınızı tanjerin.com için kapatınız!");
}