/**
 * @author Globo.com - Tecnologia
 *
 * Função utilizada para aumentar fonte.
 */
var tam = 11;
function mudaFonte(tipo)
{
  if(tipo == 'mais') {
	  if(tam < 15) tam += 2 ;    			 
  }
  else {
	  if(tam > 9) tam -= 2 ;
  }
  document.getElementById('auf').style.fontSize = tam+'px';
}

function createCookie(name,value,hours,path)
{
	if (hours){
		var date = new Date();
		date.setTime(date.getTime()+(hours*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else { var expires = ""; }
	document.cookie = name+"="+escape(value)+expires+"; path="+path;
}