<!--
function popUp(arquivo,pasta) {
	var w = window.open("", "_fotos", "width=800,height=400,left=0,top=0,scrollbars=yes,resizable=no,toolbar=no,status=no,menubar=no");
	w.document.open();
	w.document.write('<html><head><title>Data Ponto</title></head><body style="background-color:#fff; margin:0; padding:0;" onblur="self.close()">');
	w.document.write('<img src="imagens/' + pasta + '/zoom/' + arquivo + '.jpg" width="778",height="287" alt=""></body></html>');
	w.document.close();
	w.focus();
}
//-->