/** @no_class */

function ventanaFoto (URL, ancho_F, alto_F)
{ 
	alto_V = alto_F + 130;
	ancho_V = ancho_F + 100;
	
	var alto=screen.height
	var ancho=screen.width

	var v_top=(alto/2-alto_V/2)
	var v_left=(ancho/2-ancho_V/2)

	var propiedades=" width = " + ancho_V + " , height = " + alto_V + " , top = " + v_top + " , left = " + v_left

   window.open(URL , "mensaje" , propiedades + " , scrollbars=YES, titlebar=NO") 
}

$(document).ready(function() {

	$('#navFotos').dialog({
		autoOpen: false,
		closeOnScape: true,
 		show: 'slide',
		modal: true,
		width: 550,
		height: 550,
		bgiframe: true
	});
});

function desplegarDiv()
{
	$('#navFotos').dialog('open');
}

function cerrarDiv()
{
	$('#navFotos').dialog('close');
	$('#contenidoNavFotos').html('');
}

