/*
  Desenvolvido por:
  Gen Tecnologia / Construir Sites

      http://www.construirsites.com.br
      atendimento@construirsites.com.br
     +55 (83) 3252-1378

------------------------------------------------------------------*/


var tam = 13;

function mudaFonte(tipo,s_noticia_mostrar) {
  if (tipo == 'mais') {
    if( tam < 19 ) tam += 2 ;    			 
  } else {
    if (tam > 9) tam -= 2 ; }
	
  if (document.getElementById( 's_noticia_mostrar' ) )
    mudaFonteRecursiva( tipo , document.getElementById( 's_noticia_mostrar' ) ) ;

  if( document.getElementById( 's_noticia_mostrar' ) )
    mudaFonteRecursiva( tipo , document.getElementById( 's_noticia_mostrar' ) ) ;  
}

function mudaFonteRecursiva( tipo , domElement ) {		
  for( var i = 0 ; i < domElement.childNodes.length ; i++ )
  {
    mudaFonteRecursiva( tipo , domElement.childNodes.item( i )  ) ;
  }
  if( domElement.style )
    domElement.style.fontSize = tam+'px';
}

/*   Modificar URL com o "select"
---------------------------------------------------------------- */
function irParaPagina(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}