<!--
function blockError(){return true;}
window.onerror = blockError;
// -->

<!-- funções de abertura, menu e imagens --->
function maximiza() {
    var sw = screen.availWidth;
    var sh = screen.availHeight;
    self.resizeTo(sw,sh);
    self.moveTo(0,0);
  }
  
  function opAdd(url,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, 'new', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, 'new', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }

function opAddy(url,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, 'newy', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, 'newy', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }

function opAddr(url,name,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, name, 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, name, 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }

<!-- final das funções de abertura, menu e imagens --->

<!--------------SCREEN COPY PROTECTION--------------------->
//	if (window.Event) 
//	document.captureEvents(Event.MOUSEUP); 
//	function nocontextmenu() 
//	{ 
//	event.cancelBubble = true 
//	event.returnValue = false; 
//	return false; 
//	} 
//	function norightclick(e) 
//	{ 
//	if (window.Event) 
//	{ 
//	if (e.which == 2 || e.which == 3) 
//	return false; 
//	} 
//	else 
//	if (event.button == 2 || event.button == 3) 
//	alert('Olá! Fale Conosco! \n Ligue para: 55 11 3834-4807 \n Envie um e-mail para: paroquia@pnslourdes.com.br')
//	{ 
//	event.cancelBubble = true 
//	event.returnValue = false; 
//	return false; 
//	} 
//	
//	} 
//	if (document.layers) { 
//	document.captureEvents(Event.MOUSEDOWN); 
//	} 
//	document.oncontextmenu = nocontextmenu; 
//	document.onmousedown = norightclick; 
//	document.onmouseup = norightclick; 
//	
//	function disableselect(e){
//	return false
//	}
//	function reEnable(){
//	return true
//	}
//	document.onselectstart=new Function ("return false")
//	if (window.sidebar){
//	document.onmousedown=disableselect
//	document.onclick=reEnable
//	}
<!--------------/SCREEN COPY PROTECTION--------------------->

<!--------------STATUS BAR SCROLL BANNER VERSÃO 02 --------->
  message     = "Paróquia Nossa Senhora de Lourdes!^" +
                "Vila Hamburqguesa - São Paulo - Brasil^" +
                "Arquidiocese de São Paulo - Região Episcopal Lapa^" +
                "Sempre ajudando você a crescer cada vez mais na fé!^" +
                "AGRADECEMOS SUA VISITA... VOLTE SEMPRE E DIVULGUE NOSSO SITE...^"
  scrollSpeed = 25
  lineDelay   = 1500

  txt         = ""
  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
  scrollText(0)
<!--------------/STATUS BAR SCROLL BANNER VERSÃO 02 --------->
