<!-- script por: leandrorocha.com, todos os direitos reservados...
//***********************************************************************

function LocURL(url) {
if (url != "") 
{ document.location = (url); }
}
//***********************************************************************
function LocURLMA(url) {
if (url != "") 
{ document.location = ('Admin.asp?Pag='+url); }
}
//***********************************************************************
function IrParaEvento(idEvento) {
if (idEvento != "") 
{ document.location = ('Galeria.asp?Evento='+idEvento); }
}
//***********************************************************************
//====================================================================
	var tam = 10;
	function mudaFonte(tipo){
		if (tipo=="mais") {
			if(tam<30) tam+=2;
			//createCookie('fonte',tam,365);
		} else {
			if(tam>10) tam-=2;
			//createCookie('fonte',tam,365);
		}
		document.getElementById('txtnews').style.fontSize = tam+'px';
	}


//-------------------------------
function AbreJanela(theURL,winName,features) 
{ window.open(theURL,winName,features); }
//-------------------------------	
function AbreNoticiaPopup(theID) { //v2.0
var top; var left; var width; var height;
width = 480;
height = 380;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela('Noticia_Popup.asp?Noticia='+theID,'Noticia_'+theID,'status=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+',top='+top);
}
//-------------------------------	

function AbreNovaJanelaFull(url,Nome) {
var width; var height;
height = (screen.height);
width  = (screen.width) - 8;
if (url != "") 
{
window.open(url,Nome,'status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left=0,top=0','fullscreen = yes'); }
}
//-------------------------------	
function AbreJanelaPop(aPag,oNome,w,h) { //v2.0
var top; var left; var width; var height;
width  = w;
height = h;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela(aPag,oNome,'status=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+',top='+top);
}
//-------------------------------	
// -->
