function openChatById(id)
{
	window.open('/demo/show-full-screen.php?room_id=' + id , '_123flashchat', 'HEIGHT=476,resizable=yes,WIDTH=634');
}
document.write("");
//for(i = 0; i<room_id.length; i++)
for(i = 0; i<13; i++)
{
	//alert(i + " - " + chater_names[i]);
	document.write("<img src=\"img/s_9.gif\"></img> <a href=\"javascript:openChatById(" + room_id[i] +  ");\">" + room_name[i] + '</a>  (' + chater_nums[i] + ')<br>');
	/*
	if(chater_names[i] == null || chater_names[i] == '')
	{
		document.write('Chat users: None.<br>');
	}
	else
	{
		document.write('Chat users: ' + chater_names[i] + '.<br>');
	}*/
}
document.write("");
