var imnewmsg = 0;
function OpenIMChat(login,second){
	var urll = "/a-iminit/"+(login? ("login-"+login+"/") : "");//+"<*SESSION>";
	var wnd = window.open('','imwindow',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1015,height=600");
	
	try{
		if(!wnd.imchat){
			wnd.document.location.href = urll;
		}else{
			wnd.imchat.fChtNewContact(login);
		}
	}catch(e){ wnd.close(); if(!second) OpenIMChat(login,true);}
}

function SetIMMsg(n){
	imnewmsg = n;
	var el1 = document.getElementById("immessage_n");
	var el2 = document.getElementById("immessage");
	if(el1) el1.innerHTML = n? n : '0';
	if(el2) el2.className = n? 'messagenew' : 'message';
}

function OpenIMMsg(ischat){
	if(imnewmsg){
		imnewmsg--;
		if(ischat) fw.chat.fChtNewContact();
		else OpenIMChat();
	}
}