function bigimage(imagen,ancho,alto,titulo) {
	
	posicion_x=(screen.width/2)-(ancho/2); 
	posicion_y=(screen.height/2)-(alto/2);

	mv=window.open("","foto","toolbar=no,location=no, status=no,menubar=no,resizable=no,left="+posicion_x+",top="+posicion_y+",scrollbars=no,width="+ancho+",height="+alto);
	mv.document.open();
	mv.document.write('<html><head><title>'+titulo+'</title></head>');
	mv.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	mv.document.write('<img src="'+imagen+'" width="'+ancho+'" height="'+alto+'"></body></html>');
	mv.document.close();
	mv.focus();
}