

function _setTemplate(valor)
{
	window.opener.location	=	"home.php?a=1&act=template&val="+valor;
	self.close();
}


function _setBG(valor)
{
	window.opener.location	=	"home.php?a=1&act=bg&val="+valor;
	self.close();
}


/*
	opções
	scrollbars=yes, status=no, resizable=yes, toolbar=no, directories=no, menubar=no
*/

function pop_up_center_flex(local, instan, w, h, carac)
{
	largura = screen.width;
	altura 	= screen.height;
	XX 	= (largura-w)/2;
	YY	= (altura-h)/2;
	janela = window.open(local,'POP_UP'+instan,'width='+w+',height='+h+',left='+XX+',top='+YY+','+carac);
	janela.focus();
}


function _go(selObj)
{
valor = selObj.options[selObj.selectedIndex].value;
	if(valor != "#"){
		self.location = valor;
	}
}

function excluir(){
	return confirm('Confirma remoção do item?');
}

function addToFavorites(){
	if(document.all){
		window.external.AddFavorite(window.location,document.title);
	}else{
		window.sidebar.addPanel(document.title,location.href,"");
	}
}


function ChangeFontSize(acao) {
	var ObjTexto		= (document.getElementById) ? document.getElementById('internas-central') : document.all('internas-central');
		if(ObjTexto==null){
			var ObjTexto	= (document.getElementById) ? document.getElementById('internas-miolo') : document.all('internas-miolo');
		};
	
	var FonteTamAtual	= parseInt(document.query_busca.diversos.value);



	switch(acao){
		case '+':
			FonteTamNovo	=	FonteTamAtual+2;
			break;
		case '-':
			FonteTamNovo	=	FonteTamAtual-2;
			break;
		case 'r':
			FonteTamNovo	=	11;
			break;
	}
	
	document.query_busca.diversos.value	=	FonteTamNovo;
	ObjTexto.style.fontSize			=	FonteTamNovo+"px";
}

