function resizeFoto(t,tamanho){
	var o = document.getElementById(t);
	
	if(o){
		var tam = o.width;
		var tamh = o.height;
		
		if (tam>tamh){
			if (tam > tamanho){
				tam = tamanho;
				o.width = tam;
			}
		}
		else{
			if (tamh > tamanho){
				tamh = tamanho;
				o.height = tamh;
				tam = o.width;
			}
		}			
			
		//alert(tam);
	}
}


var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}

function janela(id){
	var itens = new Array("180","210","200","170","220","195","250");
	popUpWindow("pop_info.asp?f=" + id,50,50,500,itens[id-1]);
}