function janela (width, height, myname, url)
{
  var left, top;

  if (screen.width < width)
    left = 0;
  else
    left = (screen.width  - width) / 2;

  if (screen.height < height)
    top = 0;
  else
    top = (screen.height - height) / 4;

  if ( navigator.appName == "Netscape" )
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=yes,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}
  else
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=yes,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}

  if (w)
   w.focus ();
   
}
function galeria (width, height, myname, url)
{
  var left, top;

  if (screen.width < width)
    left = 0;
  else
    left = (screen.width  - width) / 2;

  if (screen.height < height)
    top = 0;
  else
    top = (screen.height - height) / 4;

  if ( navigator.appName == "Netscape" )
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}
  else
  {  var w = window.open (url, myname, "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}

  if (w)
   w.focus ();
   
}
function trocaSenha(frm)
{
	if (frm.senha.value == "")
	{
		alert("Você deve preencher o campo \"Nova Senha\"")
		frm.senha.focus()
		return false
	}
	if (frm.senha2.value == "")
	{
		alert("Repita a \"Nova Senha\"")
		frm.senha2.focus()
		return false
	}
	if (frm.senha.value != frm.senha2.value) 
	{
		alert("As \"Senhas\" não conferem")
		frm.senha.focus()
		return false
	}
}
function foto(link)
{
	window.open (link, 'foto', 'width=10,height=10,top=60,left=60');
}
function abre_foto(id){
window.open('verfoto.php?id='+id,'v','width=10 height=10 top=0');
}
function apaga_foto(id){
if(confirm("Tem Certeza que quer apagar essa foto?")){
location.href = "banco.php?action=DelFoto&id_foto="+id;
}
}
function abre_r(radio_id,ap)
{
 if(w){
	 w.close();
 }
var height = 300
var width = 466
var top = 100
var left = 200

  if ( navigator.appName == "Netscape" )
  {  var w = window.open ("louvor.php?id="+radio_id+"&ap="+ap, "height="+height+",width="+width+ 
    ",screenX=" + left + ",screenY=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}
  else
  {  var w = window.open ("louvor.php?id="+radio_id+"&ap="+ap, "radio", "height="+height+",width="+width+ 
    ",left=" + left + ",top=" + top + ",scrollbars=no,status=no,toolbar=0,menubar=no,location=0,directories=0,resizeble=no");}

  if (w)
   w.focus ();
   
}