_rec_atual = 0;
function recs(_max, _p)
{
	if(_p=="+")
	{
		if((_rec_atual+1)<_max)
		{
			document.getElementById("pag_recados_"+_rec_atual).style.display = 'none';
			document.getElementById("pag_recados_"+(_rec_atual+1)).style.display = '';
			_rec_atual = _rec_atual+1;
		}
	}
	else
	{
		if((_rec_atual)>0)
		{
			document.getElementById("pag_recados_"+_rec_atual).style.display = 'none';
			document.getElementById("pag_recados_"+(_rec_atual-1)).style.display = '';
			_rec_atual = _rec_atual-1;
		}
	}
}

function car_fotos()
{
   msg = "<div align='center'>";
   msg += "<img src='imagens/carregando.gif' style='margin-top: 61px; margin-bottom: 61px;'>";
   msg += "<\/div>";
   document.getElementById('estive_fotos').innerHTML = msg;
}

function pop_es(_id)
{
	var _left = (screen.width - 300) / 2;
	altura = ((screen.height - 300) / 2)-50;
	var _top = (altura>0?altura:0);
	
	win = window.open('?pg=estive&id='+_id+'&popup=1', "popup_carolina", 'width=300, height=300, top='+_top+', left='+_left+', scrollbars=0');
	
	if (parseInt(navigator.appVersion) >= 4)
	{
		win.window.focus();
	}
}

