// JavaScript Document
function AraguaiaNews(){
	url  = 'http://www.araguaia.net/News/iFrame/';
	url += 'AraguaiaNews.asp?';
	url += 'W='+W+'&amp;';
	url += 'H='+H+'&amp;';
	url += 'BorderColor='+BorderColor+'&amp;';
	url += 'BgColor='+BgColor+'&amp;';
	url += 'TxtColor1='+TxtColor1+'&amp;';
	url += 'TxtColor2='+TxtColor2+'&amp;';
	url += 'Query='+Query;
  
	html = '<iframe src="'+url+'" ';
	html += 'marginwidth="0" marginheight="0" vspace="0" name="Araguaia News" hspace="0" allowtransparency="true" frameborder="0" scrolling="no" ';
	html += 'width="'+W+'" height="'+H+'"></iframe>';
	document.write(html);
}
AraguaiaNews();