
function showBlaICQCHATER(reciver)
{
if(reciver==0)
{
	return false;
}

try
{
	document.getElementById(reciver).style.display="none";
}
catch(e){;}
var width=600;
var height=530;
var w=(window.screen.availWidth-width)/2;
var h=(window.screen.availHeight-height)/2;
var config='status=0,resizable=1,height='+height+',width='+width+',menubar=0,left='+w+',top='+h;
window.open('/info-center/bla-bla-bla-icq-a.php?r='+reciver, 'ICQ'+reciver, config);
}
//----------

function removeContact(i)
{
if(confirm("Удалить пользователя из контакт листа?"))
{
	window.location.href="/info-center/remove.php?u="+i;
}
}