/**
 * @author raphaeljr
 */

function abrePopupGaleria(foto) {
	var screenX = screen.availWidth;  
    var screenY = screen.availHeight;
	var src = foto.src;
	var width = foto.offsetWidth + 10;
	var height = foto.offsetHeight + 10;
	var top = 40;
	var left = 50;
	var win = window.open(src,'Sarau','width='+width+' , height='+height+', top='+top+', left='+left+', scrollbars=no,fullscreen=no');
	win.moveTo((screenX / 2) - (width / 2), (screenY / 2) - (height / 2)); 
}
