// JavaScript Document

function favoritos(){
if (document.all)window.external.AddFavorite("http://www.ligacristamundial.com.br","Liga Cristã Mundial")
} 




function stAba(menu,conteudo)
	{
		this.menu = menu;
		this.conteudo = conteudo;
	}

	var arAbas = new Array();
	arAbas[0] = new stAba('td_galeria','div_galeria');
	arAbas[1] = new stAba('td_radio','div_radio');
	arAbas[2] = new stAba('td_video','div_video');
	arAbas[3] = new stAba('td_recado','div_recado');

	function AlternarAbas(menu,conteudo)
	{
		for (i=0;i<arAbas.length;i++)
		{
			m = document.getElementById(arAbas[i].menu);
			m.className = 'menu';
			c = document.getElementById(arAbas[i].conteudo)
			c.style.display = 'none';
		}
		m = document.getElementById(menu)
		m.className = 'menu-sel';
		c = document.getElementById(conteudo)
		c.style.display = '';
	}
	

function EnviaForm(){
	jan=displayWindow('','FORMULARIO','540','150',''); //opções do popup
//	document.form2.submit();
}

function EnviaForm2(){
	jan2=displayWindow('','FORMULARIO2','540','150',''); //opções do popup
//	document.form3.submit();
}

function displayWindow(theURL,winName,width,height,features) { //Esta função aqui é para o pop-up abrir no centro, está funcionando legal
    var window_width = width;
    var window_height = height;
    var newfeatures= features;
    var window_top = (screen.height-window_height)/2;
    var window_left = (screen.width-window_width)/2;
    newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
    newWindow.focus();
}