// CONTROLE DOS VÍDEOS E SOM
function PlayClick (){
document.WMPlay.Play();
}
function StopClick (){
numero=1;
document.WMPlay.Stop();
if (navigator.appName.indexOf('Netscape') != -1)
document.WMPlay.SetCurrentPosition(0);
else
document.WMPlay.CurrentPosition = 0;
}
function PauseClick (){
if (navigator.appName.indexOf('Netscape') != -1)
estado=document.WMPlay.GetPlayState();
else
estado=document.WMPlay.PlayState;
if(estado==1)
document.WMPlay.Play();
else if (estado==2)
document.WMPlay.Pause();
}
function FowardClick(){
document.WMPlay.Next();
}
function BackClick(){
numero=numero-2;
document.WMPlay.Previous();
}
function UpVolumeClick(){
if (document.WMPlay.Volume <= -300)
document.WMPlay.Volume = document.WMPlay.Volume + 300;
}
function DownVolumeClick(){
if ( document.WMPlay.Volume >= -8000)
document.WMPlay.Volume = document.WMPlay.Volume - 300;
}
// BANNER DO BATISMO PARA AS FOTOS
function batismo(){
	window.open("aconteceu/arquivos/batismo_frutofiel2005/index.htm","","width=700,height=500")
}
function frutofiel(){
	window.open("aconteceu/arquivos/frutofiel2006_homens_mulheres/index.htm","Fruto","width=700,height=500")
// ULTIMAS NOTÍCIAS
function noticia(){
	window.open("ultimasnoticias/noticias/0,080306.html","Comunidade","width=500,height=450")
}