function ampliarFoto(strPath, strLegenda){
	var objFoto;
	objFoto = new Image();			
	objFoto.src = strPath;

	if(objFoto.complete) {
		$('#dialog').html('<img src="'+objFoto.src+'" alt="" /><br />'+strLegenda)
	}else {
		$("#dialog").html('<br /><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Carregando..<br /><br /><br />');
		objFoto.onload = function(){
			$('#dialog').html('<img src="'+objFoto.src+'" alt="" /><br />'+strLegenda)
			$( "#dialog" ).dialog( "option", "position", 'center' );
		}
	}
	$( "#dialog" ).dialog( "option", "position", 'center' );
	//Janela do form
	$('#dialog').dialog('option', 'title', 'Foto');
	$('#dialog').dialog('option', 'width', 'auto');
	$('#dialog').dialog('option', 'buttons', { "Ok": function() { $(this).dialog('close');} });
	$('#dialog').dialog('open');
	
}
