// JavaScript Document
<!--
function twitterList( user, name )
{
	ajax = ajaxInit();

	if(ajax)
	{
		ajax.open("GET", "./wp-includes/twitter.php?user=" + user + "&name=" + name, true);
		
		ajax.onreadystatechange = function()
		{
			if( ajax.responseText != "" )
			{
				writeLayer("coluna_twitter_conteudo", ajax.responseText);
				
				if( document.getElementById( "twitter_box" ) )
					document.getElementById( "twitter_box" ).style.display = "block";
			}
		}

		ajax.send(null);
 	}
}

//-->
