function selecionaFoto( obj ){
	obj.className = 'cnt-pagina-foto-galeria-sel';
}

function deselecionaFoto( obj ){
	obj.className = 'cnt-pagina-foto-galeria';
}

function abrePopupFoto( cod, lar, alt ){
	var vT;
	var vL;
	vT = ( window.screen.height / 2 ) - ( alt / 2 );
	vL = ( window.screen.width / 2 ) - ( lar / 2 );	

	window.open( "../util/popup.foto.php?CODFOTO=" + cod, '_blank', 'width='+ lar +'px, height='+ alt +'px, left=' + vL + 'px, top=' + vT + 'px' );
}