<!--
function popUp(arquivo) {
	var w = window.open("", "_fotos", "width=434,height=283,left=0,top=0,scrollbars=no,resizable=no,toolbar=no,status=no,menubar=no");
	w.document.open();
	w.document.write('<html><head><title>Arcont: Foto</title></head><body style="background-color:#fff; margin:0; padding:0;" onblur="self.close()">');
	w.document.write('<img src="' + arquivo + '.jpg" width="434" height="283" alt=""></body></html>');
	w.document.close();
	w.focus();
}
function popUpV(arquivo) {
	var w = window.open("", "_fotos_v", "width=283,height=434,left=0,top=0,scrollbars=no,resizable=no,toolbar=no,status=no,menubar=no");
	w.document.open();
	w.document.write('<html><head><title>Arcont: Foto</title></head><body style="background-color:#fff; margin:0; padding:0;" onblur="self.close()">');
	w.document.write('<img src="' + arquivo + '.jpg" width="283" height="434" alt=""></body></html>');
	w.document.close();
	w.focus();
}
//-->