function page_index_move(url)
{
populate_httpdiv(url,'gamesection',2);
}

function change_bgcolor(obj)
{
	if (obj == "popular")
	{
		document.getElementById('popular').style.backgroundColor="#767676";
		document.getElementById('popular_a').style.backgroundColor="#767676";
		document.getElementById('latest').style.backgroundColor="#B5B5B5";
		document.getElementById('latest_a').style.backgroundColor="#B5B5B5";
	}
	else
	{
		document.getElementById('latest').style.backgroundColor="#767676";
		document.getElementById('latest_a').style.backgroundColor="#767676";
		document.getElementById('popular').style.backgroundColor="#B5B5B5";
		document.getElementById('popular_a').style.backgroundColor="#B5B5B5";
	}	
}