/*enlarge chat window*/
function chatbig() {
	var c=document.getElementById("container");
	var l=c.offsetLeft;
	c=document.getElementById("chatroom");
	c.style.left=(l+120)+"px";
	c.style.display="";
	c=document.getElementById("room");
	document.getElementById("roombig").appendChild(c);
	c.width=700;
	c.height=500;
}

/*shrink chat window*/
function chatsmall() {
	var c=document.getElementById("chatroom");
	c.style.display="none";
	c=document.getElementById("room");
	document.getElementById("roomsmall").appendChild(c);
	c.width=478;
	c.height=293;
}

function xaj()
{
	xajax_ShowRadioList();
	setTimeout('xaj()', 5000);
}

function xaj2()
{
	xajax_ShowIndexRadioList();
	setTimeout('xaj2()', 5000);
}

