// JavaScript Document







// Popup

function AbreUrl(width,height,url,scroll,nJanela)

	{

	if(scroll==""){scroll=0}

	var top = ((screen.height - height)/2);

	var left = ((screen.width - width)/2);

	var configuracao = "height=" + height + ",width=" + width + ",top=" + top + ",left=" + left + ",status=1,toolbar=0,menubar=0,location=0,resizable=0,scrollbars=" + scroll + ",titlebar=0";

	window.open(url,nJanela,configuracao)

	}	

	

// Ao Vivo

function AoVivo()

	{

		AbreUrl(316,202,'radio/index.html',0,'aovivo');		

	}