function OpenIM(){
var url=uds+'/t/im.php';

GWS();

var w=screenW-210;

var TST=window.open(url,'popup','width=200,height=600,resizable=yes,scrollbars=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left='+w+',top=5'); 
TST.focus();
if (!TST){
alert("$popupblockedalert_string");
}
}


function imtabs(tabid){
if (tabid=='onlinelst'){
document.getElementById('friendslist').style.display="none";
document.getElementById('onlinelst').style.display="block";
document.getElementById('bkmlist').style.display="none";

var tlo=uds+'/at/im_tools.php?a=1';
makeRequest(tlo, 'onlinelstC', '0');
document.getElementById('bkmlist').style.height="370px";
document.getElementById('bkmlist').style.overflow="auto";
}
else if (tabid=='friendslist'){
document.getElementById('friendslist').style.display="block";
document.getElementById('onlinelst').style.display="none";
document.getElementById('bkmlist').style.display="none";
}
else if (tabid=='bkmlist'){
document.getElementById('friendslist').style.display="none";
document.getElementById('onlinelst').style.display="none";
document.getElementById('bkmlist').style.display="block";
}


}



function OpenPic(mid){
document.getElementById('mbr_'+mid).style.display="block";
}

function ClosePic(mid){
document.getElementById('mbr_'+mid).style.display="none";
}