// Ajax ###
var req;
function loadXMLMenu(pagina,div){
    req = null;
	divi = div;
    if (window.XMLHttpRequest) {
        req = new XMLHttpRequest();
        req.onreadystatechange = processReqChangeMenu;
        req.open("GET", pagina, true);
        req.send(null);
    } else if (window.ActiveXObject) {
        req = new ActiveXObject("Microsoft.XMLHTTP");
        if (req) {
            req.onreadystatechange = processReqChangeMenu;
            req.open("GET", pagina, true);
            req.send();
        }
    }
}
function processReqChangeMenu(){
	if (req.readyState == 1){
		document.getElementById(divi).innerHTML = "<div align='center'><font face='Verdana' size='-1'><strong>Carregando...</strong></font>";
	}
    if (req.readyState == 4) {
		document.getElementById(divi).innerHTML = "Carregando...";
        if (req.status == 200) {
            document.getElementById(divi).innerHTML = req.responseText;
        } else {
            alert("Houve um problema ao obter os dados:\n" + req.statusText);
			document.getElementById('text').innerHTML = "";
        }
    }

}

function ajax(pagina,div){
	loadXMLMenu(pagina,div);
}

// Flash ###

function video(nome,width,height){
   document.write("<object width='"+width+"' height='"+height+"' >");
   document.write("<param name='movie' value='http://www.youtube-nocookie.com/v/"+ nome +"&hl=pt-br&fs=1&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&border=1/>");
   document.write("<param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><param name='wmode' value='transparent'/>");
   document.write("<embed src='http://www.youtube-nocookie.com/v/"+ nome +"&hl=pt-br&fs=1&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&border=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='"+width+"' height='"+height+"'></embed>");
   document.write("</object>");
}

function flash(nome,width,height){
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+width+"' height='"+height+"'>");
   document.write("<param name='movie' value='"+ nome +"'>");
   document.write("<param name='quality' value='high'>");
   document.write("<embed src='"+ nome +"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'  wmode='transparent'></embed>");
   document.write("</object>");
}

function flasht(nome,width,height){
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+width+"' height='"+height+"'>");
   document.write("<param name='movie' value='"+ nome +"'>");
   document.write("<param name='quality' value='high'>");
   document.write("<param name='wmode' value='transparent'/>");
   document.write("<embed src='"+ nome +"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' wmode='transparent'></embed>");
   document.write("</object>");
}

function abre_news()
{
    window.open('','abre_news','scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=200,height=100,top=200,left=200');
}

function imprimir(cod,tab)
{
	var desktop = window.open('../faleconosco/imprimir.asp?cod='+cod+'&tab='+tab, '_blank', 'left=150,top=80,width=440,height=360,toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=no')
}

function tocado(titulo)
{
	var desktop = window.open('http://www.betuel.org/faleconosco/tocado.asp?titulo='+titulo, '_blank', 'width=416,height=520,left=150,top=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function indique(tab,cod,titulo)
{
	var desktop = window.open('http://www.betuel.org/indique/indique.asp?pagina='+tab+'/ler.asp?cod='+cod+'&titulo='+titulo, '_blank', 'width=250,height=160,left=160,top=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function indique_blog(tab,cod,titulo)
{
	var desktop = window.open('http://www.betuel.org/indique/indique.asp?pagina='+tab+'/ler.asp?cod='+cod+'&titulo='+titulo, '_blank', 'width=250,height=160,left=160,top=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no')
}

function radio()
{
	var desktop = window.open('../radio_novidade.html', '_blank', 'width=452,height=300,left=160,top=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no')
}
// favoritos ###
function addfavorito(){
	title = "Igreja Batista Betuel; Nossa Vida, Habitação de Deus."
	url = "http://www.betuel.org/"
	if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
	return true; }
}